Skip to content

Commit ef21923

Browse files
release: 7.0.0
1 parent 47869fd commit ef21923

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-13)
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 ([c2ca84d](https://github.com/Finch-API/finch-api-node/commit/c2ca84dc99555295ed9758023db7cfe32ee6c4e2))
10+
* **api:** api update ([1145496](https://github.com/Finch-API/finch-api-node/commit/114549617f219789b3b555ccad65a18ddf6d3b51))
11+
* **api:** move node to typescript generator ([fe0c340](https://github.com/Finch-API/finch-api-node/commit/fe0c3400c6feda2f910523414e4ecf8a473a5863))
12+
* **api:** update automated code reviewer selection ([670c300](https://github.com/Finch-API/finch-api-node/commit/670c3003470b552b98febc45eedf3a046953f549))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([c56e991](https://github.com/Finch-API/finch-api-node/commit/c56e9913cc8b865978b351898a5b3f9c6ac3e567))
14+
15+
16+
### Bug Fixes
17+
18+
* **mcp:** return tool execution error on jq failure ([55fd5df](https://github.com/Finch-API/finch-api-node/commit/55fd5dfde91e18dd0d76e22cf161c90e531ff8ec))
19+
20+
21+
### Chores
22+
23+
* **internal:** codegen related update ([ed29d6d](https://github.com/Finch-API/finch-api-node/commit/ed29d6dcbc8abb211d4bd3179925e77fca15d4fd))
24+
* **internal:** codegen related update ([1a91ed0](https://github.com/Finch-API/finch-api-node/commit/1a91ed086cf1fed0c629d25ce5f01ad322617f64))
25+
* mcp code tool explicit error message when missing a run function ([91ea47f](https://github.com/Finch-API/finch-api-node/commit/91ea47f67f06e3347d66a7ab6b32a36e157d3f0a))
26+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([0ddd199](https://github.com/Finch-API/finch-api-node/commit/0ddd1998fc44f29f14fdae89cbbbe54d308f626b))
27+
* **mcp:** add line numbers to code tool errors ([8949680](https://github.com/Finch-API/finch-api-node/commit/8949680fa1c8fe089fbe746829086023aed9e39d))
28+
* **mcp:** clarify http auth error ([6a9a05d](https://github.com/Finch-API/finch-api-node/commit/6a9a05d94e9cdc1e984546dfabe8a51645ad5cfe))
29+
* **mcp:** upgrade jq-web ([47869fd](https://github.com/Finch-API/finch-api-node/commit/47869fd300d0d6efefe4367e1e41f21ecca3ef33))
30+
* sync repo ([3123390](https://github.com/Finch-API/finch-api-node/commit/312339078a79b2fe860dcb2cfec0d244904e052c))
31+
32+
33+
### Documentation
34+
35+
* **mcp:** add a README button for one-click add to Cursor ([e0edd45](https://github.com/Finch-API/finch-api-node/commit/e0edd45c1e66ff5fb260b9080ba7e90fc261cb31))
36+
* **mcp:** add a README link to add server to VS Code or Claude Code ([4dd0587](https://github.com/Finch-API/finch-api-node/commit/4dd05874234c8eed5c5a0aae7c53504300768d78))
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)