Skip to content

Commit 37d3744

Browse files
release: 7.0.0
1 parent 35547dc commit 37d3744

6 files changed

Lines changed: 40 additions & 5 deletions

File tree

.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-16)
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 ([4a653c6](https://github.com/Finch-API/finch-api-node/commit/4a653c6a6174e3edf8ecab2e61037beb973b57a5))
10+
* **api:** api update ([d79b38d](https://github.com/Finch-API/finch-api-node/commit/d79b38d7e7e88cf688170a147d0ff717c7628f8b))
11+
* **api:** move node to typescript generator ([7c963a9](https://github.com/Finch-API/finch-api-node/commit/7c963a986553ce2f66ae37fcaeb0f597465526c9))
12+
* **api:** update automated code reviewer selection ([afda076](https://github.com/Finch-API/finch-api-node/commit/afda07684fda01d3799dc63f71aa057cf2910ed5))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([00b812c](https://github.com/Finch-API/finch-api-node/commit/00b812c09c6ce16fcf21d7c0514c7a726e120e29))
14+
15+
16+
### Bug Fixes
17+
18+
* **mcp:** return tool execution error on jq failure ([5021d20](https://github.com/Finch-API/finch-api-node/commit/5021d2035bb7e3229c8d758f521233bd69ca6795))
19+
20+
21+
### Chores
22+
23+
* **internal:** codegen related update ([58fa094](https://github.com/Finch-API/finch-api-node/commit/58fa094562a9a49a4d2e2bb77781b12758c2ddbd))
24+
* **internal:** codegen related update ([09c6714](https://github.com/Finch-API/finch-api-node/commit/09c671430c33a302870a0efe301deb3618093b0c))
25+
* mcp code tool explicit error message when missing a run function ([1591a65](https://github.com/Finch-API/finch-api-node/commit/1591a6567fa53afece1a220ad521b300e828faea))
26+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([0a0a38d](https://github.com/Finch-API/finch-api-node/commit/0a0a38dd1b4895a9724bd6f63320af500435e4af))
27+
* **mcp:** add line numbers to code tool errors ([d37e393](https://github.com/Finch-API/finch-api-node/commit/d37e393708a201528ece78cc68635766e940f666))
28+
* **mcp:** clarify http auth error ([3aba1db](https://github.com/Finch-API/finch-api-node/commit/3aba1dbf3227dd98ed0e2f849624d506ae6ef0a4))
29+
* **mcp:** upgrade jq-web ([35547dc](https://github.com/Finch-API/finch-api-node/commit/35547dc6bf42d4dffde5b69a7511a2ea3c4f98af))
30+
* sync repo ([24400bf](https://github.com/Finch-API/finch-api-node/commit/24400bfdde494101b06c8f8663d3784a7a52498a))
31+
32+
33+
### Documentation
34+
35+
* **mcp:** add a README button for one-click add to Cursor ([32c1566](https://github.com/Finch-API/finch-api-node/commit/32c15662ceb4517f3346ae0d4b1c86d4ba542bb7))
36+
* **mcp:** add a README link to add server to VS Code or Claude Code ([8f3962f](https://github.com/Finch-API/finch-api-node/commit/8f3962fad19e96023355d26cac1dc11d8f82272d))
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)