Skip to content

Commit 53abd7b

Browse files
release: 7.0.0
1 parent d6d5eb5 commit 53abd7b

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-18)
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 ([154c9d0](https://github.com/Finch-API/finch-api-node/commit/154c9d0b7372d8d19eecdcd4343f423cf15813b3))
10+
* **api:** api update ([819c236](https://github.com/Finch-API/finch-api-node/commit/819c23689573637733ec8261913c158fa8f3d53c))
11+
* **api:** move node to typescript generator ([749d44e](https://github.com/Finch-API/finch-api-node/commit/749d44e24bc729db0ff157e81f64a90cf37d2f6d))
12+
* **api:** update automated code reviewer selection ([75ad444](https://github.com/Finch-API/finch-api-node/commit/75ad444498bdb6c1ad8adb374ab35794732ab08b))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([8074034](https://github.com/Finch-API/finch-api-node/commit/80740347d1486fd8e9925cd9f1019a6212a04802))
14+
15+
16+
### Bug Fixes
17+
18+
* **mcp:** return tool execution error on jq failure ([b974d2e](https://github.com/Finch-API/finch-api-node/commit/b974d2e1fe257dcc642acc5f60013c69c31ab448))
19+
20+
21+
### Chores
22+
23+
* **internal:** codegen related update ([8a5aac3](https://github.com/Finch-API/finch-api-node/commit/8a5aac37d08a0f78f6f117e1e88a9d80d90b398f))
24+
* **internal:** codegen related update ([1a416db](https://github.com/Finch-API/finch-api-node/commit/1a416dbf26d4c7375ae65adc3793e7599582728c))
25+
* mcp code tool explicit error message when missing a run function ([2eb8a30](https://github.com/Finch-API/finch-api-node/commit/2eb8a30db67a62f2ef166be8eb0fb75542732d0e))
26+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([a4241a7](https://github.com/Finch-API/finch-api-node/commit/a4241a7b184e5f694c51c19837e41517ec47fdc5))
27+
* **mcp:** add line numbers to code tool errors ([01ce8ec](https://github.com/Finch-API/finch-api-node/commit/01ce8ec6b96e5981600ef6d0734e90653c78cdf1))
28+
* **mcp:** clarify http auth error ([f0eea74](https://github.com/Finch-API/finch-api-node/commit/f0eea745e779e2b75ec6361562e0adbafd3868f3))
29+
* **mcp:** upgrade jq-web ([d6d5eb5](https://github.com/Finch-API/finch-api-node/commit/d6d5eb531b687b8e15ee30b9f9e3e6387c4c56a2))
30+
* sync repo ([c127152](https://github.com/Finch-API/finch-api-node/commit/c1271527a81fcb8cebf3d4ed8edadfa4dc031944))
31+
32+
33+
### Documentation
34+
35+
* **mcp:** add a README button for one-click add to Cursor ([6b70011](https://github.com/Finch-API/finch-api-node/commit/6b7001158879c4aa20a5493ff836469078f703f4))
36+
* **mcp:** add a README link to add server to VS Code or Claude Code ([46554a2](https://github.com/Finch-API/finch-api-node/commit/46554a2482658dad421dd8814fe855edb2d234cd))
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)