Skip to content

Commit 1feac1c

Browse files
release: 7.0.0
1 parent a99f6dc commit 1feac1c

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-12)
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 ([9b0d822](https://github.com/Finch-API/finch-api-node/commit/9b0d822a8222bb662fea6aa98b4c4bc1ababd433))
10+
* **api:** api update ([a75599d](https://github.com/Finch-API/finch-api-node/commit/a75599d2c1ca80bb86a4045fb1b127c0a890e491))
11+
* **api:** move node to typescript generator ([ee1cac9](https://github.com/Finch-API/finch-api-node/commit/ee1cac97185034e897b74bb38f9bcc66ef70d256))
12+
* **api:** update automated code reviewer selection ([9c054be](https://github.com/Finch-API/finch-api-node/commit/9c054beebb172302f1ebbe8b5b1d330aadc48411))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([02116ee](https://github.com/Finch-API/finch-api-node/commit/02116eeab4e36fd77d47219b02d5b464ffc8af7f))
14+
15+
16+
### Bug Fixes
17+
18+
* **mcp:** return tool execution error on jq failure ([880b3c1](https://github.com/Finch-API/finch-api-node/commit/880b3c1b2a0a61d332cdcbb9c4450c381f327072))
19+
20+
21+
### Chores
22+
23+
* **internal:** codegen related update ([43f9d14](https://github.com/Finch-API/finch-api-node/commit/43f9d14b3202f06bb07528a506c108369b015350))
24+
* **internal:** codegen related update ([1fd7c45](https://github.com/Finch-API/finch-api-node/commit/1fd7c459bb9cbdb1bff2b0a43704cf90927a0b00))
25+
* mcp code tool explicit error message when missing a run function ([d063e26](https://github.com/Finch-API/finch-api-node/commit/d063e2670e657963be904110232df0e45c262ba7))
26+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([5582d30](https://github.com/Finch-API/finch-api-node/commit/5582d30421aeaa6609bde88e20b7d2976eaa0ae0))
27+
* **mcp:** add line numbers to code tool errors ([3d7ce60](https://github.com/Finch-API/finch-api-node/commit/3d7ce60ad1644cc766ac0ce3d0131be85ac498dd))
28+
* **mcp:** clarify http auth error ([c1408c7](https://github.com/Finch-API/finch-api-node/commit/c1408c76d67dd8ad3bf07ee1dd39870209585b8e))
29+
* **mcp:** upgrade jq-web ([a99f6dc](https://github.com/Finch-API/finch-api-node/commit/a99f6dccd828d04c199fdf85f86dadc7c388d9d7))
30+
* sync repo ([104a25a](https://github.com/Finch-API/finch-api-node/commit/104a25aea6be95b5b115082a7d6e961bafcc9b60))
31+
32+
33+
### Documentation
34+
35+
* **mcp:** add a README button for one-click add to Cursor ([7050ae1](https://github.com/Finch-API/finch-api-node/commit/7050ae1c847a017344963a1d1d3c8944b10acc87))
36+
* **mcp:** add a README link to add server to VS Code or Claude Code ([549a663](https://github.com/Finch-API/finch-api-node/commit/549a663c17ce4b0dc7c1114bb7a61281ed5f07dd))
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)