Skip to content

Commit 55b5ccd

Browse files
release: 7.0.0
1 parent 08e4000 commit 55b5ccd

File tree

6 files changed

+43
-5
lines changed

6 files changed

+43
-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: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,43 @@
11
# Changelog
22

3+
## 7.0.0 (2025-11-20)
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 ([6b13754](https://github.com/Finch-API/finch-api-node/commit/6b13754495eec5d5a4cf566327df0bf28f181266))
10+
* **api:** api update ([1839259](https://github.com/Finch-API/finch-api-node/commit/18392596dc388ce8633ed93a8bb2c2fb5c1218bd))
11+
* **api:** move node to typescript generator ([82d67e3](https://github.com/Finch-API/finch-api-node/commit/82d67e3afd098eef5960282c66e85bfd7f0be9ae))
12+
* **api:** update automated code reviewer selection ([bec9b4f](https://github.com/Finch-API/finch-api-node/commit/bec9b4fef511d4567b90479730924e12cb6645d7))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([027fc36](https://github.com/Finch-API/finch-api-node/commit/027fc36cfc34073ca4e9ad6c9d5a9c06613493f9))
14+
15+
16+
### Bug Fixes
17+
18+
* **api:** migrate custom code to TypeScript ([67bfd94](https://github.com/Finch-API/finch-api-node/commit/67bfd9468a91a8f2e99dc7370d1e1281115917a0))
19+
* **api:** resolve build issues ([33ca38c](https://github.com/Finch-API/finch-api-node/commit/33ca38c8811983b157c67eb3d0803c937fdbe7e0))
20+
* **mcp:** return tool execution error on jq failure ([88e4c02](https://github.com/Finch-API/finch-api-node/commit/88e4c02681b6390107bcf9383c0fc50c0b67fb37))
21+
* **tests:** fix tests ([08e4000](https://github.com/Finch-API/finch-api-node/commit/08e40004f989ef738fc35746d5bea8daf3f30715))
22+
23+
24+
### Chores
25+
26+
* **internal:** codegen related update ([c77b3ec](https://github.com/Finch-API/finch-api-node/commit/c77b3ec1ed537338d50fa6a4880aa7d26167a78e))
27+
* **internal:** codegen related update ([16c5327](https://github.com/Finch-API/finch-api-node/commit/16c5327e0af747a95d6011a8dfd9682a92a6c2d8))
28+
* mcp code tool explicit error message when missing a run function ([dff73f7](https://github.com/Finch-API/finch-api-node/commit/dff73f75b8362f32e061989dbadb504d5704cc15))
29+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([00fd056](https://github.com/Finch-API/finch-api-node/commit/00fd05604f14be5e68470e55c611c27ce1b2ba46))
30+
* **mcp:** add line numbers to code tool errors ([2976421](https://github.com/Finch-API/finch-api-node/commit/2976421fd929d75824a7358ec002292e7703bc0b))
31+
* **mcp:** clarify http auth error ([35a8d42](https://github.com/Finch-API/finch-api-node/commit/35a8d423823d2b4d3606e3ae640d395350cbe549))
32+
* **mcp:** upgrade jq-web ([96a085b](https://github.com/Finch-API/finch-api-node/commit/96a085b4688539e851a151370a68bcad95777d5a))
33+
* sync repo ([17bda75](https://github.com/Finch-API/finch-api-node/commit/17bda75d8e3387b838a6ff6c32a926f4d51bae94))
34+
35+
36+
### Documentation
37+
38+
* **mcp:** add a README button for one-click add to Cursor ([75da68a](https://github.com/Finch-API/finch-api-node/commit/75da68a249e70385576105f1ffa4c9b09108978a))
39+
* **mcp:** add a README link to add server to VS Code or Claude Code ([17e7d1f](https://github.com/Finch-API/finch-api-node/commit/17e7d1f990c1ae5f3d24a2ebc1f84bf360f8adc7))
40+
341
## 6.38.0 (2025-10-27)
442

543
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)