Skip to content

Commit 3732392

Browse files
release: 7.0.0
1 parent c69e21c commit 3732392

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 ([7c082ac](https://github.com/Finch-API/finch-api-node/commit/7c082ac20de2aeea7df868414548ba1d00fd0359))
10+
* **api:** api update ([6d8773d](https://github.com/Finch-API/finch-api-node/commit/6d8773d4870adf742784774364abaceea5f6def3))
11+
* **api:** move node to typescript generator ([a8a050c](https://github.com/Finch-API/finch-api-node/commit/a8a050cb0d1b21891137e14d421b1691f550504b))
12+
* **api:** update automated code reviewer selection ([c8e453c](https://github.com/Finch-API/finch-api-node/commit/c8e453cfe0e1fd9be319650b614bc70dfe479746))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([bbf567f](https://github.com/Finch-API/finch-api-node/commit/bbf567f6d32ee72651d3a1d0e82fddce64fed5f9))
14+
15+
16+
### Bug Fixes
17+
18+
* **mcp:** return tool execution error on jq failure ([873518d](https://github.com/Finch-API/finch-api-node/commit/873518d55f98389d9a462a7ca8ecde4974ee6983))
19+
20+
21+
### Chores
22+
23+
* **internal:** codegen related update ([6811da6](https://github.com/Finch-API/finch-api-node/commit/6811da6966d89d610c80a67b89e261a1ad105f6f))
24+
* **internal:** codegen related update ([813b36c](https://github.com/Finch-API/finch-api-node/commit/813b36c4b64093401859a820186a84a8124ab594))
25+
* mcp code tool explicit error message when missing a run function ([4e200e0](https://github.com/Finch-API/finch-api-node/commit/4e200e0ed92520bdef801c258445a8f505110cbf))
26+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([e9d40de](https://github.com/Finch-API/finch-api-node/commit/e9d40de9a1fcc6493228f59657b874a3e5649d65))
27+
* **mcp:** add line numbers to code tool errors ([23e973e](https://github.com/Finch-API/finch-api-node/commit/23e973e6a4c85e37a6340f486646b64b4613579d))
28+
* **mcp:** clarify http auth error ([3e679cb](https://github.com/Finch-API/finch-api-node/commit/3e679cb847b5989e69e8bc902872b02d944b86ac))
29+
* **mcp:** upgrade jq-web ([c69e21c](https://github.com/Finch-API/finch-api-node/commit/c69e21ccde4d692740b7f3cbfe118afe48a97922))
30+
* sync repo ([465742b](https://github.com/Finch-API/finch-api-node/commit/465742b88d3c7996f4f46af4261de0940cda5d53))
31+
32+
33+
### Documentation
34+
35+
* **mcp:** add a README button for one-click add to Cursor ([9054af6](https://github.com/Finch-API/finch-api-node/commit/9054af6ddc5885ce16cd8e86bc2e8341903abe4e))
36+
* **mcp:** add a README link to add server to VS Code or Claude Code ([82bf765](https://github.com/Finch-API/finch-api-node/commit/82bf7658b8fc08fc519eec3e9e630278856381d5))
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)