Skip to content

Commit 2052a4c

Browse files
release: 7.0.0
1 parent ce9ff84 commit 2052a4c

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-20)
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 ([abe4b25](https://github.com/Finch-API/finch-api-node/commit/abe4b256a955a979cff52b1fceed7f807e9af274))
10+
* **api:** api update ([2b45246](https://github.com/Finch-API/finch-api-node/commit/2b452463e24b8c7f591a1d6fd06f052efd5e4163))
11+
* **api:** move node to typescript generator ([d5cbefa](https://github.com/Finch-API/finch-api-node/commit/d5cbefab97e93ed2d572104d586153619eec9903))
12+
* **api:** update automated code reviewer selection ([adddbf5](https://github.com/Finch-API/finch-api-node/commit/adddbf54aca3b2415f1a8f1002450dfe29b8d683))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([3cc1202](https://github.com/Finch-API/finch-api-node/commit/3cc1202b67eb980e97f8e002de3d6b80cd1f40f1))
14+
15+
16+
### Bug Fixes
17+
18+
* **api:** migrate custom code to TypeScript ([37cbb31](https://github.com/Finch-API/finch-api-node/commit/37cbb31551555cd1bc98f374dcd43abd471806bc))
19+
* **api:** resolve build issues ([3429901](https://github.com/Finch-API/finch-api-node/commit/3429901449fe01dad0080c5fb1e2dd87084d332f))
20+
* **mcp:** return tool execution error on jq failure ([f3c1211](https://github.com/Finch-API/finch-api-node/commit/f3c121141c1a325410b794b865153f7cb184dc24))
21+
* **tests:** fix tests ([ce9ff84](https://github.com/Finch-API/finch-api-node/commit/ce9ff847ff62af58a59fdc86def48cc11d3d578d))
22+
23+
24+
### Chores
25+
26+
* **internal:** codegen related update ([118bcc3](https://github.com/Finch-API/finch-api-node/commit/118bcc3fd449ac0c31b4772a6e9af0eaf9ae535a))
27+
* **internal:** codegen related update ([f8702e7](https://github.com/Finch-API/finch-api-node/commit/f8702e7c644b35d2ce37255038b5ad8d454708e3))
28+
* mcp code tool explicit error message when missing a run function ([c51f19c](https://github.com/Finch-API/finch-api-node/commit/c51f19ca90d61031f646b7f8a778056cecf1cd94))
29+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([7cbdd1c](https://github.com/Finch-API/finch-api-node/commit/7cbdd1c0bb31b82f308333083bc89b05a098fa02))
30+
* **mcp:** add line numbers to code tool errors ([b6d2741](https://github.com/Finch-API/finch-api-node/commit/b6d27411eca8d0770875f810d0684a69641f3d5a))
31+
* **mcp:** clarify http auth error ([b42536a](https://github.com/Finch-API/finch-api-node/commit/b42536ac15e994ad0083ca03498684fa9cdf9136))
32+
* **mcp:** upgrade jq-web ([3963f41](https://github.com/Finch-API/finch-api-node/commit/3963f4127eb43bc0a2e7bc187c2c5317815487ee))
33+
* sync repo ([4f1a6cc](https://github.com/Finch-API/finch-api-node/commit/4f1a6ccad6c6945ba1eb63163edf5bf54ac162e9))
34+
35+
36+
### Documentation
37+
38+
* **mcp:** add a README button for one-click add to Cursor ([c5d64b9](https://github.com/Finch-API/finch-api-node/commit/c5d64b9177353b5fd0064b7219fb29b8ba2044fb))
39+
* **mcp:** add a README link to add server to VS Code or Claude Code ([ed387a4](https://github.com/Finch-API/finch-api-node/commit/ed387a4af993df771e85f6b037232c22eab92418))
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)