Skip to content

Commit 15323f8

Browse files
release: 7.0.0
1 parent 0f13b7d commit 15323f8

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-19)
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 ([b3af681](https://github.com/Finch-API/finch-api-node/commit/b3af681b20ac7c48f61e574e0c20ba15db3054b6))
10+
* **api:** api update ([deb66c7](https://github.com/Finch-API/finch-api-node/commit/deb66c727d88e1b54d9948a77ea9cc67789c7636))
11+
* **api:** move node to typescript generator ([7d1c48f](https://github.com/Finch-API/finch-api-node/commit/7d1c48f55c6350c41c633928d46cb7a0fd1b8801))
12+
* **api:** update automated code reviewer selection ([78d6ca9](https://github.com/Finch-API/finch-api-node/commit/78d6ca92f0ee535b4b602874886da27e395cd0c5))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([e42152f](https://github.com/Finch-API/finch-api-node/commit/e42152f0e348f263fad4c89e9e3ac5c09cacb8bc))
14+
15+
16+
### Bug Fixes
17+
18+
* **mcp:** return tool execution error on jq failure ([2244168](https://github.com/Finch-API/finch-api-node/commit/224416875ac9bc5a3cfdfb7f73eb0201d8160c15))
19+
20+
21+
### Chores
22+
23+
* **internal:** codegen related update ([88552fd](https://github.com/Finch-API/finch-api-node/commit/88552fd308b254b5c1f5a288ec2dbeaaab212928))
24+
* **internal:** codegen related update ([8905aef](https://github.com/Finch-API/finch-api-node/commit/8905aef444da7a190f42012ae2da9749156f7005))
25+
* mcp code tool explicit error message when missing a run function ([f756b07](https://github.com/Finch-API/finch-api-node/commit/f756b079d080393eda98a568563fcd2bcfddec8c))
26+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([cb2aef5](https://github.com/Finch-API/finch-api-node/commit/cb2aef5edc3535c01e26816b54589ef8bf209704))
27+
* **mcp:** add line numbers to code tool errors ([d6ed944](https://github.com/Finch-API/finch-api-node/commit/d6ed94456bee6286c50ad699a621028f4848aeba))
28+
* **mcp:** clarify http auth error ([fb37f7b](https://github.com/Finch-API/finch-api-node/commit/fb37f7bbd9fae4ffcdc9b493bf161b83e488d303))
29+
* **mcp:** upgrade jq-web ([0f13b7d](https://github.com/Finch-API/finch-api-node/commit/0f13b7d4c8889897a76f9a926a2393cc180e9a77))
30+
* sync repo ([e45f8a5](https://github.com/Finch-API/finch-api-node/commit/e45f8a5b0ae103d3c4eb36ade48a9cb9c3676150))
31+
32+
33+
### Documentation
34+
35+
* **mcp:** add a README button for one-click add to Cursor ([d108c0a](https://github.com/Finch-API/finch-api-node/commit/d108c0ad5ec3ae25e03ecc217e6cebf123d06f4c))
36+
* **mcp:** add a README link to add server to VS Code or Claude Code ([0b61676](https://github.com/Finch-API/finch-api-node/commit/0b61676d4c020c1c262c4b970af46d6093473a6a))
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)