Skip to content

Commit 0edbd6b

Browse files
release: 7.0.0
1 parent 9daa480 commit 0edbd6b

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 ([2c6aa02](https://github.com/Finch-API/finch-api-node/commit/2c6aa02b369409516fffa2fc5695eeabdf703ab3))
10+
* **api:** api update ([cb0790e](https://github.com/Finch-API/finch-api-node/commit/cb0790e63b49c21cd41fd5d3a0271a88f7f8a334))
11+
* **api:** move node to typescript generator ([cbd1175](https://github.com/Finch-API/finch-api-node/commit/cbd1175450e87176c8cd4f7296ae2942ae242d15))
12+
* **api:** update automated code reviewer selection ([f68ffa9](https://github.com/Finch-API/finch-api-node/commit/f68ffa94542e5da4b385273a2b8f5df45f989b31))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([53117d0](https://github.com/Finch-API/finch-api-node/commit/53117d0e7d97cf8b9f3f46d3ee8a9f10bc6b117f))
14+
15+
16+
### Bug Fixes
17+
18+
* **mcp:** return tool execution error on jq failure ([f3104c8](https://github.com/Finch-API/finch-api-node/commit/f3104c8cc1f7dcec294f24a2d3985a7646789a6e))
19+
20+
21+
### Chores
22+
23+
* **internal:** codegen related update ([a9bf4ea](https://github.com/Finch-API/finch-api-node/commit/a9bf4ea50d6976a114ec74c04702ac12fc8f818d))
24+
* **internal:** codegen related update ([98d56c7](https://github.com/Finch-API/finch-api-node/commit/98d56c7932c844632b9716a0fa1b3307b62c7356))
25+
* mcp code tool explicit error message when missing a run function ([c3f16e1](https://github.com/Finch-API/finch-api-node/commit/c3f16e1b20afa23b478ad3f42806d606093d6dd6))
26+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([f445089](https://github.com/Finch-API/finch-api-node/commit/f445089fab70d715d66f2599234db3f74cf4a896))
27+
* **mcp:** add line numbers to code tool errors ([8dbdd66](https://github.com/Finch-API/finch-api-node/commit/8dbdd6668f0771778eba7dfd638b4655d6786d99))
28+
* **mcp:** clarify http auth error ([aedb271](https://github.com/Finch-API/finch-api-node/commit/aedb271a2863fd1814c21409c295a3ddf2aaf65f))
29+
* **mcp:** upgrade jq-web ([9daa480](https://github.com/Finch-API/finch-api-node/commit/9daa4807bf03dae349a4cf0649d94b73cbf3491e))
30+
* sync repo ([14fe3d7](https://github.com/Finch-API/finch-api-node/commit/14fe3d7bed5f800c34ae170dd67c88c3d6345647))
31+
32+
33+
### Documentation
34+
35+
* **mcp:** add a README button for one-click add to Cursor ([aad635a](https://github.com/Finch-API/finch-api-node/commit/aad635ab6993da797918cbdca7581b2ab3c5ce9f))
36+
* **mcp:** add a README link to add server to VS Code or Claude Code ([a35c4c3](https://github.com/Finch-API/finch-api-node/commit/a35c4c3b52bd30b36595f0282eab629497aea285))
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)