Skip to content

Commit 324d4de

Browse files
release: 7.0.0
1 parent 17d1dbf commit 324d4de

File tree

6 files changed

+31
-5
lines changed

6 files changed

+31
-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: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
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 ([1da26da](https://github.com/Finch-API/finch-api-node/commit/1da26da921217fdb1f9649854b5b2d450fedcf92))
10+
* **api:** move node to typescript generator ([ae8c8e5](https://github.com/Finch-API/finch-api-node/commit/ae8c8e528f6bce0fb57c4c65cb2ab454ebe31f09))
11+
* **api:** update automated code reviewer selection ([3bb06c1](https://github.com/Finch-API/finch-api-node/commit/3bb06c191b9619ff56f39e602ae85eb53f949392))
12+
* **mcp:** enable optional code execution tool on http mcp servers ([7bc6405](https://github.com/Finch-API/finch-api-node/commit/7bc640539470202780f710de57edc9ecf7c7c7fc))
13+
14+
15+
### Chores
16+
17+
* **internal:** codegen related update ([0bd81fa](https://github.com/Finch-API/finch-api-node/commit/0bd81fab5430960ea1255e200b148ac7f546c60c))
18+
* mcp code tool explicit error message when missing a run function ([67a7f20](https://github.com/Finch-API/finch-api-node/commit/67a7f205d289c7d645d4001c59a5b8faa253f329))
19+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([41e7fae](https://github.com/Finch-API/finch-api-node/commit/41e7faeff8c10699e1e337ab0952f036387f4bdf))
20+
* **mcp:** add line numbers to code tool errors ([ff9e380](https://github.com/Finch-API/finch-api-node/commit/ff9e3801c35077b429eeb575211e638e6c0ff5b5))
21+
* sync repo ([77f5b31](https://github.com/Finch-API/finch-api-node/commit/77f5b31dac0448b6ad982e7b4321dd1c53b61002))
22+
23+
24+
### Documentation
25+
26+
* **mcp:** add a README button for one-click add to Cursor ([b0b6e47](https://github.com/Finch-API/finch-api-node/commit/b0b6e477791ba6b69307d2d944f224e8567a9251))
27+
* **mcp:** add a README link to add server to VS Code or Claude Code ([17d1dbf](https://github.com/Finch-API/finch-api-node/commit/17d1dbfdb6c1ead72bc93841081f83dab008f33a))
28+
329
## 6.38.0 (2025-10-27)
430

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