Skip to content

Commit e517749

Browse files
release: 7.0.0
1 parent b54044a commit e517749

File tree

6 files changed

+43
-5
lines changed

6 files changed

+43
-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: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,43 @@
11
# Changelog
22

3+
## 7.0.0 (2025-11-21)
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 ([10c9799](https://github.com/Finch-API/finch-api-node/commit/10c97995c6e7879ae0031fd932b1be73dac73f84))
10+
* **api:** api update ([a5e64ff](https://github.com/Finch-API/finch-api-node/commit/a5e64ffaff5768cde3e1fcf542843b251af01829))
11+
* **api:** move node to typescript generator ([86412a9](https://github.com/Finch-API/finch-api-node/commit/86412a9d9e6e4a99b7b16f3a2b9182be1dd6ccae))
12+
* **api:** update automated code reviewer selection ([9e61984](https://github.com/Finch-API/finch-api-node/commit/9e619843d7b466de08509ace0e9eae05fd76eefc))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([544b112](https://github.com/Finch-API/finch-api-node/commit/544b112480b31c786c0e64890b52bd928eae2976))
14+
15+
16+
### Bug Fixes
17+
18+
* **api:** migrate custom code to TypeScript ([acccb28](https://github.com/Finch-API/finch-api-node/commit/acccb28907c5d6027e5582b7ed0f9d90b27f0def))
19+
* **api:** resolve build issues ([45c3a31](https://github.com/Finch-API/finch-api-node/commit/45c3a31c165d0f4ad3560bced096559ed5f1a8fa))
20+
* **mcp:** return tool execution error on jq failure ([3d7aeee](https://github.com/Finch-API/finch-api-node/commit/3d7aeee9571591092ed187d612a6b75b605de223))
21+
* **tests:** fix tests ([b54044a](https://github.com/Finch-API/finch-api-node/commit/b54044ab5cf50dede57ac75fd9b02b0be92b0bb9))
22+
23+
24+
### Chores
25+
26+
* **internal:** codegen related update ([33d95dd](https://github.com/Finch-API/finch-api-node/commit/33d95dd521c6a271cec118d5de3f84cb4367148b))
27+
* **internal:** codegen related update ([b2cf354](https://github.com/Finch-API/finch-api-node/commit/b2cf354d773e79baadae8a94f488f9532c303b55))
28+
* mcp code tool explicit error message when missing a run function ([ac8dc30](https://github.com/Finch-API/finch-api-node/commit/ac8dc30620c22a5148a74bbf4935d5866f9fe146))
29+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([db7f258](https://github.com/Finch-API/finch-api-node/commit/db7f2582fbb5d007ea897347907799c14d01792b))
30+
* **mcp:** add line numbers to code tool errors ([1d9df0b](https://github.com/Finch-API/finch-api-node/commit/1d9df0b9da6de91988a863daa25df8d3cf162456))
31+
* **mcp:** clarify http auth error ([eaefa67](https://github.com/Finch-API/finch-api-node/commit/eaefa67110093168e9c6a62667c6849eba41e648))
32+
* **mcp:** upgrade jq-web ([1002d2a](https://github.com/Finch-API/finch-api-node/commit/1002d2a70c77e549f6c5f8976d5ef7c59a9ab060))
33+
* sync repo ([2fd6151](https://github.com/Finch-API/finch-api-node/commit/2fd61517b7648b48923e1228c7021b13fb550f7e))
34+
35+
36+
### Documentation
37+
38+
* **mcp:** add a README button for one-click add to Cursor ([2eebd07](https://github.com/Finch-API/finch-api-node/commit/2eebd075e74f0520c9109b5fec6e06391a2ef0d8))
39+
* **mcp:** add a README link to add server to VS Code or Claude Code ([4f6e553](https://github.com/Finch-API/finch-api-node/commit/4f6e553d9faf1b5ea2cbb2452cc977e993ad7bdf))
40+
341
## 6.38.0 (2025-10-27)
442

543
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)