Skip to content

Commit afd7c63

Browse files
release: 7.0.0
1 parent af4f1fa commit afd7c63

6 files changed

Lines changed: 40 additions & 5 deletions

File tree

.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 ([1fd86f1](https://github.com/Finch-API/finch-api-node/commit/1fd86f1058952e744f7df51cfe9df3b1de9d387c))
10+
* **api:** api update ([2be0db4](https://github.com/Finch-API/finch-api-node/commit/2be0db42084c8878743b965200215f74eb606396))
11+
* **api:** move node to typescript generator ([d558586](https://github.com/Finch-API/finch-api-node/commit/d5585862946d01c948e5ada406bc6bbeaff82842))
12+
* **api:** update automated code reviewer selection ([4d5aa9f](https://github.com/Finch-API/finch-api-node/commit/4d5aa9fe1d27a7622559235cc58a4d96ecb389f0))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([0dd16a8](https://github.com/Finch-API/finch-api-node/commit/0dd16a8cbc4f661f2fdda721e9fd1fe1ec1f05ba))
14+
15+
16+
### Bug Fixes
17+
18+
* **mcp:** return tool execution error on jq failure ([ebbc043](https://github.com/Finch-API/finch-api-node/commit/ebbc0436e11fcdbbcbe43976832e68f63c37e983))
19+
20+
21+
### Chores
22+
23+
* **internal:** codegen related update ([999d016](https://github.com/Finch-API/finch-api-node/commit/999d016de16b9150c8b3fb5aa1fc9a7ef74da83e))
24+
* **internal:** codegen related update ([8ba915e](https://github.com/Finch-API/finch-api-node/commit/8ba915e5f2913111c7147b6285c9c4e09a841c44))
25+
* mcp code tool explicit error message when missing a run function ([ea76016](https://github.com/Finch-API/finch-api-node/commit/ea76016dab76e65d622ca0839e28422e8160f248))
26+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([1ae4c8a](https://github.com/Finch-API/finch-api-node/commit/1ae4c8a5ab450f2af364b47fffd3763b19e86933))
27+
* **mcp:** add line numbers to code tool errors ([ac99332](https://github.com/Finch-API/finch-api-node/commit/ac99332ae48b1f7145dd0829723654ffe19fca96))
28+
* **mcp:** clarify http auth error ([e6c099c](https://github.com/Finch-API/finch-api-node/commit/e6c099cd4aeaf2902f08de7525dbcf4d4e7c6c9e))
29+
* **mcp:** upgrade jq-web ([af4f1fa](https://github.com/Finch-API/finch-api-node/commit/af4f1fa57a60f2c70ef1c9a7cf2483798b0a6359))
30+
* sync repo ([034dee8](https://github.com/Finch-API/finch-api-node/commit/034dee8e089cee4d5acbe74a656bc6b1b6f8d412))
31+
32+
33+
### Documentation
34+
35+
* **mcp:** add a README button for one-click add to Cursor ([f3a3c4d](https://github.com/Finch-API/finch-api-node/commit/f3a3c4d0069d16c68af886d08536a12365854082))
36+
* **mcp:** add a README link to add server to VS Code or Claude Code ([b57b2ca](https://github.com/Finch-API/finch-api-node/commit/b57b2ca2fe786243ecfcc355bb1d1467c0860395))
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)