Skip to content

Commit 03f5d5a

Browse files
release: 7.0.0
1 parent 102ffcb commit 03f5d5a

6 files changed

Lines changed: 40 additions & 5 deletions

File tree

.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 ([5f8e4bb](https://github.com/Finch-API/finch-api-node/commit/5f8e4bb29dad8bee07cacc4010c77f12574279bb))
10+
* **api:** api update ([8297bf4](https://github.com/Finch-API/finch-api-node/commit/8297bf45f2b3855ecf186fe74297b823d094ae29))
11+
* **api:** move node to typescript generator ([c57bcb5](https://github.com/Finch-API/finch-api-node/commit/c57bcb5f7498f63023da28f7237da9d33f770f0b))
12+
* **api:** update automated code reviewer selection ([da6fa4b](https://github.com/Finch-API/finch-api-node/commit/da6fa4bb295446776495ea24d1f05eb66c012155))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([8d076b5](https://github.com/Finch-API/finch-api-node/commit/8d076b5fb847e3eac59205992ef574be143d3e05))
14+
15+
16+
### Bug Fixes
17+
18+
* **mcp:** return tool execution error on jq failure ([520b97d](https://github.com/Finch-API/finch-api-node/commit/520b97d4f4215cae5320e3b02fb45b5c188b6bcb))
19+
20+
21+
### Chores
22+
23+
* **internal:** codegen related update ([00c527f](https://github.com/Finch-API/finch-api-node/commit/00c527f847b51d04ed3aca8a7defd4e6cea933a1))
24+
* **internal:** codegen related update ([988f075](https://github.com/Finch-API/finch-api-node/commit/988f075706d8271bbd5f8492103e0588eac7539a))
25+
* mcp code tool explicit error message when missing a run function ([a492c34](https://github.com/Finch-API/finch-api-node/commit/a492c3481d956a54dbea15549a7809990fb14390))
26+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([0e9ac44](https://github.com/Finch-API/finch-api-node/commit/0e9ac44c3e1f8225767ec34c10107891e65c398b))
27+
* **mcp:** add line numbers to code tool errors ([d8894db](https://github.com/Finch-API/finch-api-node/commit/d8894db6606ce1813cbc22694e902692250f4231))
28+
* **mcp:** clarify http auth error ([2388c7d](https://github.com/Finch-API/finch-api-node/commit/2388c7de5c4ccaeaf24115b4d67bc24e19043750))
29+
* **mcp:** upgrade jq-web ([102ffcb](https://github.com/Finch-API/finch-api-node/commit/102ffcbe00b3a022ae11351760433b6c4d809218))
30+
* sync repo ([ca84c03](https://github.com/Finch-API/finch-api-node/commit/ca84c03b30d80d0b1db9859004a056a801fae252))
31+
32+
33+
### Documentation
34+
35+
* **mcp:** add a README button for one-click add to Cursor ([f3fcca4](https://github.com/Finch-API/finch-api-node/commit/f3fcca4aa48682b577cfcbcc12dc8d63e30eeeef))
36+
* **mcp:** add a README link to add server to VS Code or Claude Code ([ed438dc](https://github.com/Finch-API/finch-api-node/commit/ed438dc4059614bb56c5a18b762d9242499a7017))
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)