Skip to content

Commit 218703f

Browse files
release: 7.0.0
1 parent c89c8b1 commit 218703f

File tree

6 files changed

+32
-5
lines changed

6 files changed

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

3+
## 7.0.0 (2025-11-07)
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 ([daf25c8](https://github.com/Finch-API/finch-api-node/commit/daf25c8376ce758ec51ba3b9fcbb8c6ee53346cc))
10+
* **api:** move node to typescript generator ([4f226e5](https://github.com/Finch-API/finch-api-node/commit/4f226e55e9488db22de6e3e1a60e089f626297f5))
11+
* **api:** update automated code reviewer selection ([371b328](https://github.com/Finch-API/finch-api-node/commit/371b328620e79cdec980fcf10742b8bf6c577000))
12+
* **mcp:** enable optional code execution tool on http mcp servers ([9b4dff8](https://github.com/Finch-API/finch-api-node/commit/9b4dff8b348a8457d0f2681aec5dd7476b921ebc))
13+
14+
15+
### Chores
16+
17+
* **internal:** codegen related update ([c89c8b1](https://github.com/Finch-API/finch-api-node/commit/c89c8b15409a5d3ca9f1feccb740c3c620e8494c))
18+
* **internal:** codegen related update ([5ca7be5](https://github.com/Finch-API/finch-api-node/commit/5ca7be51f9581478f161fea0a573779e69c0c5bd))
19+
* mcp code tool explicit error message when missing a run function ([86d95de](https://github.com/Finch-API/finch-api-node/commit/86d95de5d14f4328b102c8f0dcda2e907c89ffd9))
20+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([bc1a2e2](https://github.com/Finch-API/finch-api-node/commit/bc1a2e2dcff6cf9b38f3bd5f85244de10994512b))
21+
* **mcp:** add line numbers to code tool errors ([2f651d0](https://github.com/Finch-API/finch-api-node/commit/2f651d0b9cc186608b21f31ac10c68bf7e71bc47))
22+
* sync repo ([afd7641](https://github.com/Finch-API/finch-api-node/commit/afd764122b3130b8dceb311e2aad581a5c7787ca))
23+
24+
25+
### Documentation
26+
27+
* **mcp:** add a README button for one-click add to Cursor ([9a22f74](https://github.com/Finch-API/finch-api-node/commit/9a22f74e404758d2d7d2d0bca9f0a26046cd19db))
28+
* **mcp:** add a README link to add server to VS Code or Claude Code ([3d0509b](https://github.com/Finch-API/finch-api-node/commit/3d0509bfb803dc539a7fb0d116fadf74fb459552))
29+
330
## 6.38.0 (2025-10-27)
431

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