Skip to content

Commit 2afd67a

Browse files
release: 7.0.0
1 parent 1d2fdf8 commit 2afd67a

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-19)
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 ([6ba6994](https://github.com/Finch-API/finch-api-node/commit/6ba699480ddc7e88019e0719930966b023419fee))
10+
* **api:** api update ([d150520](https://github.com/Finch-API/finch-api-node/commit/d15052029502054d7b51c8624cd07399b3eb6355))
11+
* **api:** move node to typescript generator ([6bc6a3a](https://github.com/Finch-API/finch-api-node/commit/6bc6a3a9c9541b52aa81e6b80ab7dc025d93c71c))
12+
* **api:** update automated code reviewer selection ([ce2c023](https://github.com/Finch-API/finch-api-node/commit/ce2c02355921dd254685e07bcc4ef161537111c5))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([f014c35](https://github.com/Finch-API/finch-api-node/commit/f014c3516c6791a2776d575f32b59000e22fb0b4))
14+
15+
16+
### Bug Fixes
17+
18+
* **mcp:** return tool execution error on jq failure ([64b9922](https://github.com/Finch-API/finch-api-node/commit/64b9922b73634faa453dfbd531883f6f210c0eae))
19+
20+
21+
### Chores
22+
23+
* **internal:** codegen related update ([7b7918d](https://github.com/Finch-API/finch-api-node/commit/7b7918d19f7a2871da4746761e0533ad90b349aa))
24+
* **internal:** codegen related update ([e593e0b](https://github.com/Finch-API/finch-api-node/commit/e593e0b28c0f195e0489e28f9bb8fd3cc64dff74))
25+
* mcp code tool explicit error message when missing a run function ([90268cf](https://github.com/Finch-API/finch-api-node/commit/90268cffe5211c648f4640313cd279b38ab21191))
26+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([4137f19](https://github.com/Finch-API/finch-api-node/commit/4137f19a1a7f9a6e8f4f26a67a1c85b9d0b0c013))
27+
* **mcp:** add line numbers to code tool errors ([b09a2fc](https://github.com/Finch-API/finch-api-node/commit/b09a2fc7f606471cc5186ac30b07331f59720a62))
28+
* **mcp:** clarify http auth error ([eef387f](https://github.com/Finch-API/finch-api-node/commit/eef387fe841024205198aa8793f2d383173db13b))
29+
* **mcp:** upgrade jq-web ([1d2fdf8](https://github.com/Finch-API/finch-api-node/commit/1d2fdf84f1a3b1cc13cee4d0917052589456da19))
30+
* sync repo ([c1ef9a2](https://github.com/Finch-API/finch-api-node/commit/c1ef9a2cad60412354540b273a8ba41439bd1238))
31+
32+
33+
### Documentation
34+
35+
* **mcp:** add a README button for one-click add to Cursor ([86f3d37](https://github.com/Finch-API/finch-api-node/commit/86f3d37403470d5d9de0f94f5384c69c7acdd5d5))
36+
* **mcp:** add a README link to add server to VS Code or Claude Code ([ea7c56e](https://github.com/Finch-API/finch-api-node/commit/ea7c56ec9febc52031bfea461109625ec3ad9c53))
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)