Skip to content

Commit 7bb48a8

Browse files
release: 7.0.0
1 parent 623b5ef commit 7bb48a8

File tree

6 files changed

+32
-5
lines changed

6 files changed

+32
-5
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "6.38.0"
2+
".": "7.0.0"
33
}

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
# Changelog
22

3+
## 7.0.0 (2025-11-07)
4+
5+
Full Changelog: [v6.38.0...v7.0.0](https://github.com/Finch-API/finch-api-node/compare/v6.38.0...v7.0.0)
6+
7+
### Features
8+
9+
* **api:** api update ([d83a0f8](https://github.com/Finch-API/finch-api-node/commit/d83a0f8914af8f307fc8b342d7cb6074f5a7384e))
10+
* **api:** move node to typescript generator ([c23de83](https://github.com/Finch-API/finch-api-node/commit/c23de8396c1bdeb98163ceca38606b81f7986493))
11+
* **api:** update automated code reviewer selection ([0ab194b](https://github.com/Finch-API/finch-api-node/commit/0ab194b117485a9ce996eb741f099741a4494572))
12+
* **mcp:** enable optional code execution tool on http mcp servers ([b544a58](https://github.com/Finch-API/finch-api-node/commit/b544a58da20f5b70eb85b689401b278bc87db51b))
13+
14+
15+
### Chores
16+
17+
* **internal:** codegen related update ([623b5ef](https://github.com/Finch-API/finch-api-node/commit/623b5ef0a56ec84dee26dae77f1ee976398776e8))
18+
* **internal:** codegen related update ([d315f46](https://github.com/Finch-API/finch-api-node/commit/d315f46ececede1a9ff06d4664bbd5e954a125aa))
19+
* mcp code tool explicit error message when missing a run function ([08ee517](https://github.com/Finch-API/finch-api-node/commit/08ee517c0e8e0f03ad3059360ce97f1d2ad2f8a3))
20+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([f7eab33](https://github.com/Finch-API/finch-api-node/commit/f7eab33af0fdb08e323dbe1043b9d6b689426e58))
21+
* **mcp:** add line numbers to code tool errors ([9965520](https://github.com/Finch-API/finch-api-node/commit/9965520aa2845fa5b279e390d4a80f1d5736b8fb))
22+
* sync repo ([2d383bc](https://github.com/Finch-API/finch-api-node/commit/2d383bc2128616ec1522e572ba93b3ab8f92443a))
23+
24+
25+
### Documentation
26+
27+
* **mcp:** add a README button for one-click add to Cursor ([1417c38](https://github.com/Finch-API/finch-api-node/commit/1417c38d7ba4c5a3120650634db17e2edda53e8c))
28+
* **mcp:** add a README link to add server to VS Code or Claude Code ([da8beec](https://github.com/Finch-API/finch-api-node/commit/da8beecf2451806ba3734da152daa98feda3fd8d))
29+
330
## 6.38.0 (2025-10-27)
431

532
Full Changelog: [v6.37.0...v6.38.0](https://github.com/Finch-API/finch-api-node/compare/v6.37.0...v6.38.0)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tryfinch/finch-api",
3-
"version": "6.38.0",
3+
"version": "7.0.0",
44
"description": "The official TypeScript library for the Finch API",
55
"author": "Finch <founders@tryfinch.com>",
66
"types": "dist/index.d.ts",

packages/mcp-server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tryfinch/finch-api-mcp",
3-
"version": "6.38.0",
3+
"version": "7.0.0",
44
"description": "The official MCP Server for the Finch API",
55
"author": "Finch <founders@tryfinch.com>",
66
"types": "dist/index.d.ts",

packages/mcp-server/src/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export const newMcpServer = () =>
3434
new McpServer(
3535
{
3636
name: 'tryfinch_finch_api_api',
37-
version: '6.38.0',
37+
version: '7.0.0',
3838
},
3939
{ capabilities: { tools: {}, logging: {} } },
4040
);

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '6.38.0'; // x-release-please-version
1+
export const VERSION = '7.0.0'; // x-release-please-version

0 commit comments

Comments
 (0)