Skip to content

Commit 294cc49

Browse files
release: 7.0.0
1 parent fbafe99 commit 294cc49

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 ([d9f5207](https://github.com/Finch-API/finch-api-node/commit/d9f52077ad473813c4e6fff13c21153709160ba5))
10+
* **api:** api update ([b63f531](https://github.com/Finch-API/finch-api-node/commit/b63f531b47aa8a9b21f7d04a184c58ca41fc7d42))
11+
* **api:** move node to typescript generator ([4c6e97e](https://github.com/Finch-API/finch-api-node/commit/4c6e97e76682abea985b973e8590c2b905a05e0b))
12+
* **api:** update automated code reviewer selection ([3c7a674](https://github.com/Finch-API/finch-api-node/commit/3c7a674e0bb332662c5498cf35ef5632db3d1f9d))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([d3e56c6](https://github.com/Finch-API/finch-api-node/commit/d3e56c6fc793a2b86817dec38aad7f1337751e06))
14+
15+
16+
### Bug Fixes
17+
18+
* **mcp:** return tool execution error on jq failure ([73926e5](https://github.com/Finch-API/finch-api-node/commit/73926e5aa9620987dd8ee1362bfe477d805073f8))
19+
20+
21+
### Chores
22+
23+
* **internal:** codegen related update ([f97bee3](https://github.com/Finch-API/finch-api-node/commit/f97bee367f413a0513e72c5142301ecc8918d363))
24+
* **internal:** codegen related update ([79f04c0](https://github.com/Finch-API/finch-api-node/commit/79f04c0372d6b9c3e6fa1301784231aab9d12d45))
25+
* mcp code tool explicit error message when missing a run function ([901d6b1](https://github.com/Finch-API/finch-api-node/commit/901d6b1c7c0df05ffeb2aa8f8f2a59131ee9cfc9))
26+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([6ee685d](https://github.com/Finch-API/finch-api-node/commit/6ee685d82d5d4f683890deb4bff65d257224b95c))
27+
* **mcp:** add line numbers to code tool errors ([78acf8f](https://github.com/Finch-API/finch-api-node/commit/78acf8f4be6ad289d29b537b36eea3dcacc5c879))
28+
* **mcp:** clarify http auth error ([b1f8ef4](https://github.com/Finch-API/finch-api-node/commit/b1f8ef435077f90eb908aa1370e56c6baf377795))
29+
* **mcp:** upgrade jq-web ([fbafe99](https://github.com/Finch-API/finch-api-node/commit/fbafe99f49fbaf4373b3e1be68cc0b5e61c53bd2))
30+
* sync repo ([a148368](https://github.com/Finch-API/finch-api-node/commit/a148368a2d58d9402d5094cf36f1c62baa792a55))
31+
32+
33+
### Documentation
34+
35+
* **mcp:** add a README button for one-click add to Cursor ([397be07](https://github.com/Finch-API/finch-api-node/commit/397be0746b0770b33f31e9846f9ec6383368f7b4))
36+
* **mcp:** add a README link to add server to VS Code or Claude Code ([30434b8](https://github.com/Finch-API/finch-api-node/commit/30434b8d729b7d9ec29249f0bf3ba68fb31373ff))
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)