Skip to content

Commit 50f4a95

Browse files
release: 7.0.0
1 parent fc867d6 commit 50f4a95

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 ([2f02f0a](https://github.com/Finch-API/finch-api-node/commit/2f02f0aef84b4cb8459b46b1cac210b6df3ae4c2))
10+
* **api:** api update ([0c4bbd2](https://github.com/Finch-API/finch-api-node/commit/0c4bbd2718f3144fbffd18d05548a2f7d1b66f16))
11+
* **api:** move node to typescript generator ([736c0ea](https://github.com/Finch-API/finch-api-node/commit/736c0eae78d30b0742b8b1e283227596f16373cd))
12+
* **api:** update automated code reviewer selection ([6ecece1](https://github.com/Finch-API/finch-api-node/commit/6ecece120a30e18184729f67948cc8a2322ccac1))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([75d3a1b](https://github.com/Finch-API/finch-api-node/commit/75d3a1b4af87a191d269c8da62fb350f6fd9b0f5))
14+
15+
16+
### Bug Fixes
17+
18+
* **mcp:** return tool execution error on jq failure ([b7be64a](https://github.com/Finch-API/finch-api-node/commit/b7be64ae3b44afff9e568383eaf48923ec83198d))
19+
20+
21+
### Chores
22+
23+
* **internal:** codegen related update ([5d33c2b](https://github.com/Finch-API/finch-api-node/commit/5d33c2b0bd703b164b132ea0bafc86d731a020ab))
24+
* **internal:** codegen related update ([cbcc6a8](https://github.com/Finch-API/finch-api-node/commit/cbcc6a861a62a6bf6ae240d0de8d76cce3418604))
25+
* mcp code tool explicit error message when missing a run function ([790ee92](https://github.com/Finch-API/finch-api-node/commit/790ee928d6003cf76af5df7c9ee723b91361909e))
26+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([e6be2eb](https://github.com/Finch-API/finch-api-node/commit/e6be2eb5f8a10a44f2d82480069300f1534ce20c))
27+
* **mcp:** add line numbers to code tool errors ([4dfa0a1](https://github.com/Finch-API/finch-api-node/commit/4dfa0a1966522570315293730ccb8bf67fc187f9))
28+
* **mcp:** clarify http auth error ([5e34928](https://github.com/Finch-API/finch-api-node/commit/5e349284b62736dca967bf76783d167b312d8699))
29+
* **mcp:** upgrade jq-web ([fc867d6](https://github.com/Finch-API/finch-api-node/commit/fc867d632a669af75b445bc3bae8476987216912))
30+
* sync repo ([8a3a9d5](https://github.com/Finch-API/finch-api-node/commit/8a3a9d5baf2ac6adb2ab4b3e1bcefa16366ab6e1))
31+
32+
33+
### Documentation
34+
35+
* **mcp:** add a README button for one-click add to Cursor ([ed1c23a](https://github.com/Finch-API/finch-api-node/commit/ed1c23a3d5777ff0e426e566c6e514cfd5125ffb))
36+
* **mcp:** add a README link to add server to VS Code or Claude Code ([449df04](https://github.com/Finch-API/finch-api-node/commit/449df04247e18f0bf178587ef2fd3a095a3d730b))
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)