Skip to content

Commit fd204e3

Browse files
release: 7.0.0
1 parent f8fd072 commit fd204e3

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 ([a1dbaf8](https://github.com/Finch-API/finch-api-node/commit/a1dbaf8af663d6b21b123e94c443c4db029b72d5))
10+
* **api:** api update ([0e1ba2f](https://github.com/Finch-API/finch-api-node/commit/0e1ba2f3bc06b0370fe1422abc72e3aa71b49c93))
11+
* **api:** move node to typescript generator ([f1dff35](https://github.com/Finch-API/finch-api-node/commit/f1dff3516a8d8bf0c3ad4c7414b1cd69f97efbda))
12+
* **api:** update automated code reviewer selection ([7fb9923](https://github.com/Finch-API/finch-api-node/commit/7fb99232280013c430c4b990e4a6485848614ddd))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([13c2e97](https://github.com/Finch-API/finch-api-node/commit/13c2e979fcfc0dca6b7942708f68a1725bfe34a0))
14+
15+
16+
### Bug Fixes
17+
18+
* **api:** migrate custom code to TypeScript ([e338e9e](https://github.com/Finch-API/finch-api-node/commit/e338e9e0983305a05fe9ba92bb4912bbd2c39fd3))
19+
* **api:** resolve build issues ([5658e7f](https://github.com/Finch-API/finch-api-node/commit/5658e7f7e397a121e372727d558bcd8046296d18))
20+
* **mcp:** return tool execution error on jq failure ([7854111](https://github.com/Finch-API/finch-api-node/commit/78541115b0b1c8ad9b2557c75ec12dc331dbb2dc))
21+
* **tests:** fix tests ([f8fd072](https://github.com/Finch-API/finch-api-node/commit/f8fd072f2c6630ca4ed3e1e40da573fbc6c81489))
22+
23+
24+
### Chores
25+
26+
* **internal:** codegen related update ([ec51e44](https://github.com/Finch-API/finch-api-node/commit/ec51e44f41d262051d9cf0d75962c255a9eeebdb))
27+
* **internal:** codegen related update ([056c948](https://github.com/Finch-API/finch-api-node/commit/056c948fd5a87e9f4ca5055983ade44f2f9afb7a))
28+
* mcp code tool explicit error message when missing a run function ([7647da9](https://github.com/Finch-API/finch-api-node/commit/7647da9b4d46981dc06392346bf4c978cf9d8264))
29+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([a8c5584](https://github.com/Finch-API/finch-api-node/commit/a8c5584a1c88e8e316535169f1ca301e4957d353))
30+
* **mcp:** add line numbers to code tool errors ([396bcf3](https://github.com/Finch-API/finch-api-node/commit/396bcf3141aa43a57ae9b5c1973b2df2903ab351))
31+
* **mcp:** clarify http auth error ([5d1ae81](https://github.com/Finch-API/finch-api-node/commit/5d1ae818432e7935e8ec37187e84d1c5e8815369))
32+
* **mcp:** upgrade jq-web ([405f66d](https://github.com/Finch-API/finch-api-node/commit/405f66d707b77bb81788bc63282d254775aa3899))
33+
* sync repo ([80d3ec7](https://github.com/Finch-API/finch-api-node/commit/80d3ec7da7468992b7bd2bd68085e01f990bde85))
34+
35+
36+
### Documentation
37+
38+
* **mcp:** add a README button for one-click add to Cursor ([e57d34d](https://github.com/Finch-API/finch-api-node/commit/e57d34d540726b39e6448968ec48e4c7532bfea1))
39+
* **mcp:** add a README link to add server to VS Code or Claude Code ([b9ca486](https://github.com/Finch-API/finch-api-node/commit/b9ca486a98135ce6aa4f44c5fe03600d7a49be02))
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)