Skip to content

Commit 80b618d

Browse files
release: 7.0.0
1 parent c96c2de commit 80b618d

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-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 ([574b62e](https://github.com/Finch-API/finch-api-node/commit/574b62eb8cab81974110d1833aa0542698810825))
10+
* **api:** api update ([b3db244](https://github.com/Finch-API/finch-api-node/commit/b3db2445694905027e7afc2beae1f6c493100597))
11+
* **api:** move node to typescript generator ([b199535](https://github.com/Finch-API/finch-api-node/commit/b199535a0b44f3d6df3bd25311364e583c765695))
12+
* **api:** update automated code reviewer selection ([f5eedb5](https://github.com/Finch-API/finch-api-node/commit/f5eedb50020dfdb7b5fc2f9bef5b1ed13c1ffab0))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([f0ea3f2](https://github.com/Finch-API/finch-api-node/commit/f0ea3f29fb5c7cb261a9ee5ffdad6a96d370efb7))
14+
15+
16+
### Bug Fixes
17+
18+
* **mcp:** return tool execution error on jq failure ([382bb48](https://github.com/Finch-API/finch-api-node/commit/382bb48ab2590196ad061a878057e3eb9f28cfce))
19+
20+
21+
### Chores
22+
23+
* **internal:** codegen related update ([14fd854](https://github.com/Finch-API/finch-api-node/commit/14fd8544bb4a64dae90ba73c9f979d3cd379503f))
24+
* **internal:** codegen related update ([075b311](https://github.com/Finch-API/finch-api-node/commit/075b3113554a1be6aff6eb934873f6367a472d1e))
25+
* mcp code tool explicit error message when missing a run function ([94cdd39](https://github.com/Finch-API/finch-api-node/commit/94cdd39617aa949ed9e0d0833b522c81b6ed9306))
26+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([dbfb43b](https://github.com/Finch-API/finch-api-node/commit/dbfb43bbfbb084429a284c8c26a7c6846bee22fc))
27+
* **mcp:** add line numbers to code tool errors ([0c83fb7](https://github.com/Finch-API/finch-api-node/commit/0c83fb72106c33c5d18dc470b38a3929a5c095e4))
28+
* **mcp:** clarify http auth error ([8c89766](https://github.com/Finch-API/finch-api-node/commit/8c89766da2e0c753a195d04c93844716d5a03701))
29+
* **mcp:** upgrade jq-web ([c96c2de](https://github.com/Finch-API/finch-api-node/commit/c96c2de29105f6d92ef1a8e52b07d1f005a66cde))
30+
* sync repo ([83187bb](https://github.com/Finch-API/finch-api-node/commit/83187bb6231b508673e7f31f201f537e658945c5))
31+
32+
33+
### Documentation
34+
35+
* **mcp:** add a README button for one-click add to Cursor ([9066872](https://github.com/Finch-API/finch-api-node/commit/9066872909f1c351624110fb37cfe304379e5e46))
36+
* **mcp:** add a README link to add server to VS Code or Claude Code ([6e3500a](https://github.com/Finch-API/finch-api-node/commit/6e3500a2be0b9ebbacc7bd8a8513a4126b362295))
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)