Skip to content

Commit 260fe94

Browse files
release: 7.0.0
1 parent a17244e commit 260fe94

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 ([de152d8](https://github.com/Finch-API/finch-api-node/commit/de152d8ff565cfdc39bff070eb339ff3df0283ce))
10+
* **api:** api update ([58289ac](https://github.com/Finch-API/finch-api-node/commit/58289aca444ebcc07b40f64b24fab4d03aa5f240))
11+
* **api:** move node to typescript generator ([8f1f38d](https://github.com/Finch-API/finch-api-node/commit/8f1f38d7003d1e43de0ff954d73bcf005a70205e))
12+
* **api:** update automated code reviewer selection ([364bd87](https://github.com/Finch-API/finch-api-node/commit/364bd8759d69e78e0d55bb44bbcb55a59085fc86))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([89fa741](https://github.com/Finch-API/finch-api-node/commit/89fa741dbede56e5c6123e7b156b326b57d45b35))
14+
15+
16+
### Bug Fixes
17+
18+
* **mcp:** return tool execution error on jq failure ([41a3d8f](https://github.com/Finch-API/finch-api-node/commit/41a3d8fdf6d206dec83d584f11a6beb6812420b2))
19+
20+
21+
### Chores
22+
23+
* **internal:** codegen related update ([63e7893](https://github.com/Finch-API/finch-api-node/commit/63e789339a5b1e7213632c4213d7e29e7de1662c))
24+
* **internal:** codegen related update ([39d8cba](https://github.com/Finch-API/finch-api-node/commit/39d8cba0dde2d7bf8a74e5424ff89d48657dfbd2))
25+
* mcp code tool explicit error message when missing a run function ([339d2ad](https://github.com/Finch-API/finch-api-node/commit/339d2ad0c53dad036ff005ff7e56a89f8a24a307))
26+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([10ece84](https://github.com/Finch-API/finch-api-node/commit/10ece84e81f5e1d4581202249f3eb2d524678cca))
27+
* **mcp:** add line numbers to code tool errors ([6bf3bf5](https://github.com/Finch-API/finch-api-node/commit/6bf3bf5fcffcb47f566403b626a0fadd31b1e136))
28+
* **mcp:** clarify http auth error ([c307028](https://github.com/Finch-API/finch-api-node/commit/c3070288f5507dcc8bd03340eef3d3fc9d797313))
29+
* **mcp:** upgrade jq-web ([a17244e](https://github.com/Finch-API/finch-api-node/commit/a17244ee71cbe4d5800b2d758edda1a730bd7cc5))
30+
* sync repo ([e157c45](https://github.com/Finch-API/finch-api-node/commit/e157c4558c3c4be02cb0ab3f92924e0cde65cce5))
31+
32+
33+
### Documentation
34+
35+
* **mcp:** add a README button for one-click add to Cursor ([155cb58](https://github.com/Finch-API/finch-api-node/commit/155cb583f4674a27b7b03b8a1cbc4caea12f8ffd))
36+
* **mcp:** add a README link to add server to VS Code or Claude Code ([166d775](https://github.com/Finch-API/finch-api-node/commit/166d775ac9a19bf29bba884a159f79f375dccb4d))
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)