Skip to content

Commit 337b4a1

Browse files
release: 7.0.0
1 parent e5b34ec commit 337b4a1

File tree

6 files changed

+34
-5
lines changed

6 files changed

+34
-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: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,34 @@
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 ([30745e4](https://github.com/Finch-API/finch-api-node/commit/30745e48d44b5170c93014fc40f0798c53b76fc8))
10+
* **api:** api update ([2ec95a5](https://github.com/Finch-API/finch-api-node/commit/2ec95a58a86b607dee3d56eb1a53ec725e63c32b))
11+
* **api:** move node to typescript generator ([a3b5c74](https://github.com/Finch-API/finch-api-node/commit/a3b5c741e04375c6839d427838da3ca9420a5a0d))
12+
* **api:** update automated code reviewer selection ([6f17ff3](https://github.com/Finch-API/finch-api-node/commit/6f17ff3976b64d0f9bc19ee9e07679b70a2954f4))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([d28c341](https://github.com/Finch-API/finch-api-node/commit/d28c341698ec41080bdc29047a608ba4ea10edc1))
14+
15+
16+
### Chores
17+
18+
* **internal:** codegen related update ([31cf57c](https://github.com/Finch-API/finch-api-node/commit/31cf57c73dac909c2bf7d92763a143e4d9d07de9))
19+
* **internal:** codegen related update ([856eacd](https://github.com/Finch-API/finch-api-node/commit/856eacd9254cb92cd7363eb988b3e2edc4581906))
20+
* mcp code tool explicit error message when missing a run function ([f2d1caa](https://github.com/Finch-API/finch-api-node/commit/f2d1caa643b49fbab472fcdefde31bd091097550))
21+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([85295cc](https://github.com/Finch-API/finch-api-node/commit/85295ccff0213c1ddc23532da5a8f2ce4bd8be9d))
22+
* **mcp:** add line numbers to code tool errors ([bb2967f](https://github.com/Finch-API/finch-api-node/commit/bb2967f58a6ac4fe72bfe71dc9899a9fe8c3519d))
23+
* **mcp:** clarify http auth error ([e5b34ec](https://github.com/Finch-API/finch-api-node/commit/e5b34ec9b53cad6c5b2c4892718759838acfc34e))
24+
* sync repo ([091d45c](https://github.com/Finch-API/finch-api-node/commit/091d45c4c820a9fbedadfd72519354ec67a92960))
25+
26+
27+
### Documentation
28+
29+
* **mcp:** add a README button for one-click add to Cursor ([1698b0b](https://github.com/Finch-API/finch-api-node/commit/1698b0b68024c1b0d62551452f981aa09627e9a4))
30+
* **mcp:** add a README link to add server to VS Code or Claude Code ([c4f530b](https://github.com/Finch-API/finch-api-node/commit/c4f530b9ee1e83d87dd2db6f4be9ffc4b76d91df))
31+
332
## 6.38.0 (2025-10-27)
433

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