Skip to content

Commit 243df04

Browse files
release: 7.0.0
1 parent 75d7cb7 commit 243df04

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-17)
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 ([3eb9319](https://github.com/Finch-API/finch-api-node/commit/3eb931993af4c192ccf9949a532b8c8d7a812246))
10+
* **api:** api update ([02303fa](https://github.com/Finch-API/finch-api-node/commit/02303fab4db70f30828323f448258ee1c11034fb))
11+
* **api:** move node to typescript generator ([9e335af](https://github.com/Finch-API/finch-api-node/commit/9e335afd220550507e8737d6dea22dd7291d215b))
12+
* **api:** update automated code reviewer selection ([d0f07c8](https://github.com/Finch-API/finch-api-node/commit/d0f07c8c50aabdd01fcffb622fae771a8a4c4cd0))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([cc92939](https://github.com/Finch-API/finch-api-node/commit/cc929399729053bc07a93c0c24c36bfe8a0cbe0a))
14+
15+
16+
### Bug Fixes
17+
18+
* **mcp:** return tool execution error on jq failure ([bab54b4](https://github.com/Finch-API/finch-api-node/commit/bab54b4507aa6296e474207e400a2e1e31249c81))
19+
20+
21+
### Chores
22+
23+
* **internal:** codegen related update ([ce501b6](https://github.com/Finch-API/finch-api-node/commit/ce501b6fc834533bc71ffef03463e557e268dcd0))
24+
* **internal:** codegen related update ([da36fe1](https://github.com/Finch-API/finch-api-node/commit/da36fe19d1f02cec03cfbc7799b36dd3abf7080f))
25+
* mcp code tool explicit error message when missing a run function ([bd62d92](https://github.com/Finch-API/finch-api-node/commit/bd62d923622bb413cc55e2448f2fe3621ba835b9))
26+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([4a80dd8](https://github.com/Finch-API/finch-api-node/commit/4a80dd8f180fb3d41b5c2f5b446254b1167a1d45))
27+
* **mcp:** add line numbers to code tool errors ([9c77e9e](https://github.com/Finch-API/finch-api-node/commit/9c77e9e08b7677b9220c313da8e723cc74d42bf6))
28+
* **mcp:** clarify http auth error ([e06cf44](https://github.com/Finch-API/finch-api-node/commit/e06cf44c01f07f5a9dd0ad86299ddce3cf298032))
29+
* **mcp:** upgrade jq-web ([75d7cb7](https://github.com/Finch-API/finch-api-node/commit/75d7cb74abd4a05d65022337bdcea9d05c751330))
30+
* sync repo ([fca33d9](https://github.com/Finch-API/finch-api-node/commit/fca33d97dbb79b98e46e5ae4d587b2150f4d9ebf))
31+
32+
33+
### Documentation
34+
35+
* **mcp:** add a README button for one-click add to Cursor ([d068729](https://github.com/Finch-API/finch-api-node/commit/d0687290794e2e390e663dbadc0c506b7c83afb2))
36+
* **mcp:** add a README link to add server to VS Code or Claude Code ([52567b0](https://github.com/Finch-API/finch-api-node/commit/52567b0d273bbf8098e57497f13b52be07ea22e8))
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)