Skip to content

Commit 376a460

Browse files
release: 7.0.0
1 parent 42775d1 commit 376a460

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-18)
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 ([3d77464](https://github.com/Finch-API/finch-api-node/commit/3d77464ab4d01838b3f9acc235c6ef69037a9000))
10+
* **api:** api update ([53e6a7d](https://github.com/Finch-API/finch-api-node/commit/53e6a7d5d5052778bff44bcb93af64d9150283ab))
11+
* **api:** move node to typescript generator ([e39f198](https://github.com/Finch-API/finch-api-node/commit/e39f19804e72eefc0f7c8ff0152c439d6cd4fc7a))
12+
* **api:** update automated code reviewer selection ([fa0bd51](https://github.com/Finch-API/finch-api-node/commit/fa0bd5156e1a2308cf3d7dde2830dd6c2129e167))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([18a7b90](https://github.com/Finch-API/finch-api-node/commit/18a7b90c32fc0465d15dd4a33f4ccd9f82b269b5))
14+
15+
16+
### Bug Fixes
17+
18+
* **mcp:** return tool execution error on jq failure ([4829172](https://github.com/Finch-API/finch-api-node/commit/48291722b5cf7ff3e34bde595c7d0f870eece033))
19+
20+
21+
### Chores
22+
23+
* **internal:** codegen related update ([55e4400](https://github.com/Finch-API/finch-api-node/commit/55e4400660760ffea4f4f4692ac7a27629ac04c2))
24+
* **internal:** codegen related update ([b9f96c7](https://github.com/Finch-API/finch-api-node/commit/b9f96c7b7f26fb20280d9d285218a027eb3fb9b0))
25+
* mcp code tool explicit error message when missing a run function ([b73d51a](https://github.com/Finch-API/finch-api-node/commit/b73d51a1c1d5202e2f25a1be08f5b8d1ff4e0bf0))
26+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([7319d13](https://github.com/Finch-API/finch-api-node/commit/7319d13ca3935732d1df1cd3ed69ce8a40c4f64a))
27+
* **mcp:** add line numbers to code tool errors ([90a7ba9](https://github.com/Finch-API/finch-api-node/commit/90a7ba90cee550a9c2bad708ee6b7f67b56ec9f8))
28+
* **mcp:** clarify http auth error ([0337135](https://github.com/Finch-API/finch-api-node/commit/0337135bd2fb6eed698a9e69e4624dc65e01a93b))
29+
* **mcp:** upgrade jq-web ([42775d1](https://github.com/Finch-API/finch-api-node/commit/42775d12ac80d2d361bbbbe70ccd62097e46a0f8))
30+
* sync repo ([ad3bf7c](https://github.com/Finch-API/finch-api-node/commit/ad3bf7c7660543085863bf17823d67a0a5417711))
31+
32+
33+
### Documentation
34+
35+
* **mcp:** add a README button for one-click add to Cursor ([2821cbb](https://github.com/Finch-API/finch-api-node/commit/2821cbb18e2d02b107d68211ef9fb00c0a0e7674))
36+
* **mcp:** add a README link to add server to VS Code or Claude Code ([5d8b622](https://github.com/Finch-API/finch-api-node/commit/5d8b622d35667c02e59609e3b7772f0085ad1661))
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)