Skip to content

Commit 3a3f8c5

Browse files
release: 7.0.0
1 parent fe8ff10 commit 3a3f8c5

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-14)
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 ([718482c](https://github.com/Finch-API/finch-api-node/commit/718482c81745d3d2f640b610f24026944eaaf331))
10+
* **api:** api update ([2639489](https://github.com/Finch-API/finch-api-node/commit/2639489194b5a49f5bd0eeed4d929d18ffeead4a))
11+
* **api:** move node to typescript generator ([5fcba8c](https://github.com/Finch-API/finch-api-node/commit/5fcba8c21ac86cfc2623e7f30d5f299b0a2216cd))
12+
* **api:** update automated code reviewer selection ([2ff2597](https://github.com/Finch-API/finch-api-node/commit/2ff2597e263ccaeb8c2ec93f63598a9a445cc064))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([9edc350](https://github.com/Finch-API/finch-api-node/commit/9edc350a1c7bc78873d3c813ef38a11903e1be36))
14+
15+
16+
### Bug Fixes
17+
18+
* **mcp:** return tool execution error on jq failure ([dea5a9b](https://github.com/Finch-API/finch-api-node/commit/dea5a9bb4cf4f245cb304974095ea6902725f2d8))
19+
20+
21+
### Chores
22+
23+
* **internal:** codegen related update ([c0ba1d3](https://github.com/Finch-API/finch-api-node/commit/c0ba1d3ca6f9b4b234201727de22c91e6c8a47c0))
24+
* **internal:** codegen related update ([cf6bc41](https://github.com/Finch-API/finch-api-node/commit/cf6bc414bef70f9239a5f648730e426eb96fc70e))
25+
* mcp code tool explicit error message when missing a run function ([116f7c2](https://github.com/Finch-API/finch-api-node/commit/116f7c25a19e13bbdbb9188d94fd24fdb416a7d9))
26+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([f60a07d](https://github.com/Finch-API/finch-api-node/commit/f60a07dbb9bd12ab542eddd2c17bffbc083904ca))
27+
* **mcp:** add line numbers to code tool errors ([764200b](https://github.com/Finch-API/finch-api-node/commit/764200b7e95e8a9d2ac9a93d946326546eaaa4be))
28+
* **mcp:** clarify http auth error ([ec7dd6f](https://github.com/Finch-API/finch-api-node/commit/ec7dd6f3a9be40699f544e93d42bee67c4dc66de))
29+
* **mcp:** upgrade jq-web ([fe8ff10](https://github.com/Finch-API/finch-api-node/commit/fe8ff1001d01934ac6d099d43cf86d62a643d94f))
30+
* sync repo ([7a26925](https://github.com/Finch-API/finch-api-node/commit/7a2692563128777d31cd7b539ce9610397a74654))
31+
32+
33+
### Documentation
34+
35+
* **mcp:** add a README button for one-click add to Cursor ([893fa4e](https://github.com/Finch-API/finch-api-node/commit/893fa4ed19693fa59561f845b1515029eb56bdcd))
36+
* **mcp:** add a README link to add server to VS Code or Claude Code ([50143f9](https://github.com/Finch-API/finch-api-node/commit/50143f9791a6e1c51cbfdaba9fd186cbd305aabb))
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)