Skip to content

Commit 3df3188

Browse files
release: 7.0.0
1 parent ae76362 commit 3df3188

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 ([df05860](https://github.com/Finch-API/finch-api-node/commit/df05860dfebd81773c34abbcca1f0d98f33fae6a))
10+
* **api:** api update ([1c864d3](https://github.com/Finch-API/finch-api-node/commit/1c864d32406d2f8330127fef3945d1d4ddbeea63))
11+
* **api:** move node to typescript generator ([80bb9f8](https://github.com/Finch-API/finch-api-node/commit/80bb9f89704bbfa5cec61501f4a9f4be064e9988))
12+
* **api:** update automated code reviewer selection ([b572511](https://github.com/Finch-API/finch-api-node/commit/b572511701034f5c84ba6b7e2367f231641de69e))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([7cf89a5](https://github.com/Finch-API/finch-api-node/commit/7cf89a5ff40fedb70a5570655d2182c9a685a156))
14+
15+
16+
### Bug Fixes
17+
18+
* **mcp:** return tool execution error on jq failure ([9ff7add](https://github.com/Finch-API/finch-api-node/commit/9ff7add2dd146012ed7dcdbd3da7b912eefbbc2e))
19+
20+
21+
### Chores
22+
23+
* **internal:** codegen related update ([1395fbc](https://github.com/Finch-API/finch-api-node/commit/1395fbcbf06304cd1c53a6c1d628ed3b0a5ad880))
24+
* **internal:** codegen related update ([ca4f92b](https://github.com/Finch-API/finch-api-node/commit/ca4f92b3ff0a7184f75a45bf8cc0e16c1ab02832))
25+
* mcp code tool explicit error message when missing a run function ([d61b071](https://github.com/Finch-API/finch-api-node/commit/d61b07167caeb543b3a944c38a8918358815fdb2))
26+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([98e9f05](https://github.com/Finch-API/finch-api-node/commit/98e9f0598c3bdd06fe4057bdfb94432935c3fcc4))
27+
* **mcp:** add line numbers to code tool errors ([4b15389](https://github.com/Finch-API/finch-api-node/commit/4b15389a27d9bdd24a1fddabb53ab60b7a564797))
28+
* **mcp:** clarify http auth error ([88db281](https://github.com/Finch-API/finch-api-node/commit/88db281cbaa85396107f9ef0e6fb98a85e7d46ef))
29+
* **mcp:** upgrade jq-web ([ae76362](https://github.com/Finch-API/finch-api-node/commit/ae76362a7d5b78ca81c6d35095693243e72740e5))
30+
* sync repo ([f27f5bf](https://github.com/Finch-API/finch-api-node/commit/f27f5bf5384ad317fcf310975f7358dda7ba0cd6))
31+
32+
33+
### Documentation
34+
35+
* **mcp:** add a README button for one-click add to Cursor ([ea1dc32](https://github.com/Finch-API/finch-api-node/commit/ea1dc32c542134049c19fd353e3f036bbe610bf6))
36+
* **mcp:** add a README link to add server to VS Code or Claude Code ([859ed21](https://github.com/Finch-API/finch-api-node/commit/859ed215072fb87a28c18860bb9790b4e4b3d33e))
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)