Skip to content

Commit 8d7aa5a

Browse files
release: 7.0.0
1 parent a26b42e commit 8d7aa5a

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 ([2471b61](https://github.com/Finch-API/finch-api-node/commit/2471b61bc31758b25ad56833254e4037c57c2c38))
10+
* **api:** api update ([4d17e64](https://github.com/Finch-API/finch-api-node/commit/4d17e648673f982f2d0b7c5bc451f6570e408cbc))
11+
* **api:** move node to typescript generator ([ad77ad3](https://github.com/Finch-API/finch-api-node/commit/ad77ad33d143ccc35069913d741f15b2e47f26e7))
12+
* **api:** update automated code reviewer selection ([fbf3364](https://github.com/Finch-API/finch-api-node/commit/fbf3364005eef764f353c3c58505cd0c1793cc48))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([093ef14](https://github.com/Finch-API/finch-api-node/commit/093ef147ad0c78749b2739a1b1691a8702dea740))
14+
15+
16+
### Bug Fixes
17+
18+
* **mcp:** return tool execution error on jq failure ([8b1d1a4](https://github.com/Finch-API/finch-api-node/commit/8b1d1a4ef68747e0d9ea9957b91de11bbdad1b7b))
19+
20+
21+
### Chores
22+
23+
* **internal:** codegen related update ([3eacae1](https://github.com/Finch-API/finch-api-node/commit/3eacae1cce71d3b78aeecfa16d17b142c0451a6e))
24+
* **internal:** codegen related update ([dbe9cfd](https://github.com/Finch-API/finch-api-node/commit/dbe9cfdd84122ea19327ca47367b0d8eb3717aa2))
25+
* mcp code tool explicit error message when missing a run function ([88a17a0](https://github.com/Finch-API/finch-api-node/commit/88a17a04c70298ee3c36f4e4fba6574cbf2975cc))
26+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([cafafda](https://github.com/Finch-API/finch-api-node/commit/cafafdaf9e9f046491c6aaf4b95334c7b7430350))
27+
* **mcp:** add line numbers to code tool errors ([b940a92](https://github.com/Finch-API/finch-api-node/commit/b940a92eb31678c97d6067312312cd1947af9245))
28+
* **mcp:** clarify http auth error ([74a6a91](https://github.com/Finch-API/finch-api-node/commit/74a6a91eaefd581655d2f5c58a66d36e53d591af))
29+
* **mcp:** upgrade jq-web ([a26b42e](https://github.com/Finch-API/finch-api-node/commit/a26b42e123a2cd81b1e1cc7f0b2e6fe0ce663d55))
30+
* sync repo ([009914a](https://github.com/Finch-API/finch-api-node/commit/009914a821a0d228522b38ee4922070ee1084118))
31+
32+
33+
### Documentation
34+
35+
* **mcp:** add a README button for one-click add to Cursor ([cd54cff](https://github.com/Finch-API/finch-api-node/commit/cd54cffa50ceecbeb4a69ee4fbd0c338920b588b))
36+
* **mcp:** add a README link to add server to VS Code or Claude Code ([18debf7](https://github.com/Finch-API/finch-api-node/commit/18debf71aedae6624c6d996e239d06212bf826b0))
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)