Skip to content

Commit b73a685

Browse files
release: 7.0.0
1 parent 4b3cddb commit b73a685

File tree

6 files changed

+39
-5
lines changed

6 files changed

+39
-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: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,39 @@
11
# Changelog
22

3+
## 7.0.0 (2025-11-12)
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 ([50e42bd](https://github.com/Finch-API/finch-api-node/commit/50e42bde22f9caec02a2b0ee89935e548a5846c9))
10+
* **api:** api update ([a121491](https://github.com/Finch-API/finch-api-node/commit/a121491f816148d976e0bce48715d5d46a1e2579))
11+
* **api:** move node to typescript generator ([034d036](https://github.com/Finch-API/finch-api-node/commit/034d03673133da5357d3dca8a4f2d525cbc9ec21))
12+
* **api:** update automated code reviewer selection ([c8f629f](https://github.com/Finch-API/finch-api-node/commit/c8f629f89abc21d6c36cdb1a9d4584b23c53fe3e))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([3d70848](https://github.com/Finch-API/finch-api-node/commit/3d70848773aff2c31c6efcdc8563a76454b4fe54))
14+
15+
16+
### Bug Fixes
17+
18+
* **mcp:** return tool execution error on jq failure ([4b3cddb](https://github.com/Finch-API/finch-api-node/commit/4b3cddb34e0582c630e0279f42992be40c4adb4f))
19+
20+
21+
### Chores
22+
23+
* **internal:** codegen related update ([4eb5b50](https://github.com/Finch-API/finch-api-node/commit/4eb5b506e101fe296cedffd369660277aa758469))
24+
* **internal:** codegen related update ([e5166db](https://github.com/Finch-API/finch-api-node/commit/e5166db70ea4af0a1e1d9d108b836682b9572a10))
25+
* mcp code tool explicit error message when missing a run function ([1f16e1a](https://github.com/Finch-API/finch-api-node/commit/1f16e1ae796fae2e6b9c86495a417e2782e1c2d3))
26+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([921a7cc](https://github.com/Finch-API/finch-api-node/commit/921a7cca35ba09f5d32f8379d54089a7ad59b732))
27+
* **mcp:** add line numbers to code tool errors ([cf86382](https://github.com/Finch-API/finch-api-node/commit/cf86382cf33b3a503816f5a6dd5cbb942c647d72))
28+
* **mcp:** clarify http auth error ([313b398](https://github.com/Finch-API/finch-api-node/commit/313b39894382585da39182dfdc13b43ca9d3d2bb))
29+
* sync repo ([e73b871](https://github.com/Finch-API/finch-api-node/commit/e73b871645566c54104305e7bf341f253715f09f))
30+
31+
32+
### Documentation
33+
34+
* **mcp:** add a README button for one-click add to Cursor ([a03f093](https://github.com/Finch-API/finch-api-node/commit/a03f0930c2f87a96bdc20c807523a1accae599f3))
35+
* **mcp:** add a README link to add server to VS Code or Claude Code ([ae2c822](https://github.com/Finch-API/finch-api-node/commit/ae2c822e689a7be322938554ec264ae46f8613b2))
36+
337
## 6.38.0 (2025-10-27)
438

539
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)