Skip to content

Commit 837ad79

Browse files
release: 7.0.0
1 parent 19da64b commit 837ad79

File tree

6 files changed

+40
-5
lines changed

6 files changed

+40
-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: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,40 @@
11
# Changelog
22

3+
## 7.0.0 (2025-11-17)
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 ([7d9277b](https://github.com/Finch-API/finch-api-node/commit/7d9277be28d9bb27c39a69486bbd5bfa3a677dea))
10+
* **api:** api update ([b119c05](https://github.com/Finch-API/finch-api-node/commit/b119c050944484c3ddb68c3e0db886dbe4964adb))
11+
* **api:** move node to typescript generator ([ad875cc](https://github.com/Finch-API/finch-api-node/commit/ad875cc331307b0a95923eef37969e1a399316fc))
12+
* **api:** update automated code reviewer selection ([d3bcb9a](https://github.com/Finch-API/finch-api-node/commit/d3bcb9acc4a9611df8cbb890209959c9973ffbe9))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([69377a0](https://github.com/Finch-API/finch-api-node/commit/69377a0a9db1c95af610accf2f54e6d06b6e377a))
14+
15+
16+
### Bug Fixes
17+
18+
* **mcp:** return tool execution error on jq failure ([be290a0](https://github.com/Finch-API/finch-api-node/commit/be290a032dcce74795b5135e786e22ff4a54ea7e))
19+
20+
21+
### Chores
22+
23+
* **internal:** codegen related update ([9b5180d](https://github.com/Finch-API/finch-api-node/commit/9b5180da30ca7969484b88f689b4d1b6a07dbcd1))
24+
* **internal:** codegen related update ([bec5e6a](https://github.com/Finch-API/finch-api-node/commit/bec5e6a8085b24ed81c1aafca541318ada3e491c))
25+
* mcp code tool explicit error message when missing a run function ([5cdb1fb](https://github.com/Finch-API/finch-api-node/commit/5cdb1fbc7eadbf17dd1456b9a1c88abb94572b99))
26+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([c016627](https://github.com/Finch-API/finch-api-node/commit/c0166278f8d767f0f5320313f21fad3fbf76b119))
27+
* **mcp:** add line numbers to code tool errors ([0a35e37](https://github.com/Finch-API/finch-api-node/commit/0a35e37080de8490783e9273f465597d8c31f852))
28+
* **mcp:** clarify http auth error ([4ab6cbc](https://github.com/Finch-API/finch-api-node/commit/4ab6cbc8d5e0f4d2a1e569519383994dffffdda1))
29+
* **mcp:** upgrade jq-web ([19da64b](https://github.com/Finch-API/finch-api-node/commit/19da64bf7b0e0f125c0ae87c16b95f0db37c8de3))
30+
* sync repo ([e5b35aa](https://github.com/Finch-API/finch-api-node/commit/e5b35aaa7124af2b26d956e20358ca4a62b7bbe6))
31+
32+
33+
### Documentation
34+
35+
* **mcp:** add a README button for one-click add to Cursor ([f1e9a7e](https://github.com/Finch-API/finch-api-node/commit/f1e9a7ea78870c3b93b718cfcef5c336d01f2cd3))
36+
* **mcp:** add a README link to add server to VS Code or Claude Code ([b173313](https://github.com/Finch-API/finch-api-node/commit/b173313965f1b28a69768aeddd0a7da5eb9296af))
37+
338
## 6.38.0 (2025-10-27)
439

540
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)