Skip to content

Commit 8af83e5

Browse files
release: 7.0.0
1 parent f5fd551 commit 8af83e5

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-12)
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 ([fe09330](https://github.com/Finch-API/finch-api-node/commit/fe09330237ed23bf10bfa1f2dc8e84dea3ecd963))
10+
* **api:** api update ([cd05e8f](https://github.com/Finch-API/finch-api-node/commit/cd05e8f9f400d1b035eb8ceaeb08efcda64d84c1))
11+
* **api:** move node to typescript generator ([ec2efae](https://github.com/Finch-API/finch-api-node/commit/ec2efae1c3abe9dcded9c7a7b02db2ed956a6498))
12+
* **api:** update automated code reviewer selection ([afe4170](https://github.com/Finch-API/finch-api-node/commit/afe417055a09c37a10ee40aff4dcd392400437ef))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([6615192](https://github.com/Finch-API/finch-api-node/commit/66151927f8b35cea506ab676651a67957a741222))
14+
15+
16+
### Bug Fixes
17+
18+
* **mcp:** return tool execution error on jq failure ([d3c0aa2](https://github.com/Finch-API/finch-api-node/commit/d3c0aa250c516c9b81d13a4b93f849a0798a437f))
19+
20+
21+
### Chores
22+
23+
* **internal:** codegen related update ([1723304](https://github.com/Finch-API/finch-api-node/commit/1723304ed817b368b3ead3f7e2b343aee07eabe5))
24+
* **internal:** codegen related update ([b4a6015](https://github.com/Finch-API/finch-api-node/commit/b4a6015ff0c8b3cc2236ac85d6811745ac630e69))
25+
* mcp code tool explicit error message when missing a run function ([a10f97d](https://github.com/Finch-API/finch-api-node/commit/a10f97d96967325cb4d16709b9db935b5b0f216f))
26+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([fd77108](https://github.com/Finch-API/finch-api-node/commit/fd77108b60f39319d0383f71c2458a508391bd3b))
27+
* **mcp:** add line numbers to code tool errors ([c5e43b6](https://github.com/Finch-API/finch-api-node/commit/c5e43b65d71dc4a979e41457ebea0e8dc69081cc))
28+
* **mcp:** clarify http auth error ([9fc5dc1](https://github.com/Finch-API/finch-api-node/commit/9fc5dc120010b14518a344ba2ec94ae9ba7905bb))
29+
* **mcp:** upgrade jq-web ([f5fd551](https://github.com/Finch-API/finch-api-node/commit/f5fd5515a8a922744a216c61f8654d625391ccd3))
30+
* sync repo ([6b0ab4d](https://github.com/Finch-API/finch-api-node/commit/6b0ab4deb32b0f549e9a2ff3e40f9bf114fdb7f9))
31+
32+
33+
### Documentation
34+
35+
* **mcp:** add a README button for one-click add to Cursor ([3cddc92](https://github.com/Finch-API/finch-api-node/commit/3cddc92fec2657b8015e5d90b179b9b87753ffb7))
36+
* **mcp:** add a README link to add server to VS Code or Claude Code ([61578a8](https://github.com/Finch-API/finch-api-node/commit/61578a880394e4c2cdf7015ba72479ce1b8ffb95))
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)