Skip to content

Commit a150d3e

Browse files
release: 7.0.0
1 parent 3fd5b35 commit a150d3e

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 ([497f02c](https://github.com/Finch-API/finch-api-node/commit/497f02cf730c47c543903bc4fb252c3f691de320))
10+
* **api:** api update ([6546a5e](https://github.com/Finch-API/finch-api-node/commit/6546a5e809024002d35dbd94df54e0e8e4890a1e))
11+
* **api:** move node to typescript generator ([652fcb1](https://github.com/Finch-API/finch-api-node/commit/652fcb177f1f36922a1f0a319dfc7a78357564fb))
12+
* **api:** update automated code reviewer selection ([1297481](https://github.com/Finch-API/finch-api-node/commit/12974815dfaf9a053d850183e6de3280d59c7e11))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([71b3cf3](https://github.com/Finch-API/finch-api-node/commit/71b3cf3e32f30c2232fa6f0dec02ebac8fc9b58c))
14+
15+
16+
### Bug Fixes
17+
18+
* **api:** migrate custom code to TypeScript ([52ac801](https://github.com/Finch-API/finch-api-node/commit/52ac8015cf77a09c6a02180aabb21784e98132e0))
19+
* **api:** resolve build issues ([3f774b5](https://github.com/Finch-API/finch-api-node/commit/3f774b5d619cb30fb1b7b4c5499fff77d105d229))
20+
* **mcp:** return tool execution error on jq failure ([56d2261](https://github.com/Finch-API/finch-api-node/commit/56d226159dd2e6f75dae9d209c1e853d9b29fc14))
21+
* **tests:** fix tests ([3fd5b35](https://github.com/Finch-API/finch-api-node/commit/3fd5b35d9f5288dbe87325d81b012c130c5ac4dc))
22+
23+
24+
### Chores
25+
26+
* **internal:** codegen related update ([a7e81f2](https://github.com/Finch-API/finch-api-node/commit/a7e81f2961d9eeb6241347c1b54fc13f9fea6b37))
27+
* **internal:** codegen related update ([5bbfea0](https://github.com/Finch-API/finch-api-node/commit/5bbfea0ca2e5f4a740270dd9762a5f51c27c3bc3))
28+
* mcp code tool explicit error message when missing a run function ([b03f742](https://github.com/Finch-API/finch-api-node/commit/b03f74234a8b97e88878f7a208c0d9c86310b0fb))
29+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([9808bfa](https://github.com/Finch-API/finch-api-node/commit/9808bfa7a5ff51974cdc0e2807c9816d4ee17cb7))
30+
* **mcp:** add line numbers to code tool errors ([3abfdb7](https://github.com/Finch-API/finch-api-node/commit/3abfdb75e185b1db083801daaf7fc61f531696cf))
31+
* **mcp:** clarify http auth error ([f7f92e8](https://github.com/Finch-API/finch-api-node/commit/f7f92e8359b5108f1b0a37131df94887e6f94f0e))
32+
* **mcp:** upgrade jq-web ([8225fd7](https://github.com/Finch-API/finch-api-node/commit/8225fd7ab2647d1e0f1a23c64fce8352bf47cba2))
33+
* sync repo ([3963118](https://github.com/Finch-API/finch-api-node/commit/396311827e654ebbb065654969134f528f63d353))
34+
35+
36+
### Documentation
37+
38+
* **mcp:** add a README button for one-click add to Cursor ([5dc4f45](https://github.com/Finch-API/finch-api-node/commit/5dc4f45041653a23015d5ef09b7628aca21c595c))
39+
* **mcp:** add a README link to add server to VS Code or Claude Code ([1ddc44d](https://github.com/Finch-API/finch-api-node/commit/1ddc44d2acd8d5ab4fac770bb09f4a5165104f9d))
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)