Skip to content

Commit 37022e0

Browse files
release: 7.0.0
1 parent 27f337c commit 37022e0

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-08)
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 ([dfb6cd3](https://github.com/Finch-API/finch-api-node/commit/dfb6cd35db31a8acf5ba5372e9f29d9cd56d55b1))
10+
* **api:** move node to typescript generator ([24d4695](https://github.com/Finch-API/finch-api-node/commit/24d46959c8e4cd204cf3ef2862f586b20df73fda))
11+
* **api:** update automated code reviewer selection ([15cf617](https://github.com/Finch-API/finch-api-node/commit/15cf6173a9c0b8af5fff783e3aa15868cb43f402))
12+
* **mcp:** enable optional code execution tool on http mcp servers ([2aed972](https://github.com/Finch-API/finch-api-node/commit/2aed972c5135582ede11186f5ab930dcfcfe47b8))
13+
14+
15+
### Chores
16+
17+
* **internal:** codegen related update ([27f337c](https://github.com/Finch-API/finch-api-node/commit/27f337c70f46f18b0184d78ecfc7063ab52e2162))
18+
* **internal:** codegen related update ([9525982](https://github.com/Finch-API/finch-api-node/commit/95259826c7e1ab4a77f9fff7bb8d8c5ce182cac4))
19+
* mcp code tool explicit error message when missing a run function ([0717098](https://github.com/Finch-API/finch-api-node/commit/0717098755f78bb51a60589407a4b4df7f3b1a01))
20+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([fdcbaa9](https://github.com/Finch-API/finch-api-node/commit/fdcbaa9249f4d6acd5f4c9a86cf02ad6b972fd6b))
21+
* **mcp:** add line numbers to code tool errors ([b96332b](https://github.com/Finch-API/finch-api-node/commit/b96332bb4fde69f4fb504c13059e475eb54cec3d))
22+
* sync repo ([71d3f86](https://github.com/Finch-API/finch-api-node/commit/71d3f86e73876f3bea007b52c5f3e93fb914c5d5))
23+
24+
25+
### Documentation
26+
27+
* **mcp:** add a README button for one-click add to Cursor ([93202e8](https://github.com/Finch-API/finch-api-node/commit/93202e8db4d0597c7ea132e6faeff87755a0b3bb))
28+
* **mcp:** add a README link to add server to VS Code or Claude Code ([3f458f3](https://github.com/Finch-API/finch-api-node/commit/3f458f30262ecff9bbe872d5da16dcc09399f76b))
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)