Skip to content

Commit e57f394

Browse files
release: 7.0.0
1 parent df85ebe commit e57f394

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 ([9d936e1](https://github.com/Finch-API/finch-api-node/commit/9d936e1fcc8952c20c974af2cb5a7f62127462a6))
10+
* **api:** move node to typescript generator ([dbfa106](https://github.com/Finch-API/finch-api-node/commit/dbfa106d1d05a90a016fd850415044b088c59cfe))
11+
* **api:** update automated code reviewer selection ([960109d](https://github.com/Finch-API/finch-api-node/commit/960109df650cd70b20a9d442da3c698fb3788ec5))
12+
* **mcp:** enable optional code execution tool on http mcp servers ([8eabdc6](https://github.com/Finch-API/finch-api-node/commit/8eabdc6689a0fd5e93c7f71dc396f7ccdc1391f9))
13+
14+
15+
### Chores
16+
17+
* **internal:** codegen related update ([df85ebe](https://github.com/Finch-API/finch-api-node/commit/df85ebee66332fb100508b3f2aa1f89d6e1a9f6c))
18+
* **internal:** codegen related update ([4f63339](https://github.com/Finch-API/finch-api-node/commit/4f6333966119aa4abc8951ae30b0f5e6a9287c45))
19+
* mcp code tool explicit error message when missing a run function ([5b988ef](https://github.com/Finch-API/finch-api-node/commit/5b988ef2accc0274d1c7a973aa0400ba1ec18621))
20+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([65fb4fb](https://github.com/Finch-API/finch-api-node/commit/65fb4fb518fae099753391949bc805f35d3aa51e))
21+
* **mcp:** add line numbers to code tool errors ([e7a3b9b](https://github.com/Finch-API/finch-api-node/commit/e7a3b9b0c0a5e4262c0fdb11dd924b7c9ee97b77))
22+
* sync repo ([9e653a4](https://github.com/Finch-API/finch-api-node/commit/9e653a4e612322f38e51119fd03f8c8b58a4e0b4))
23+
24+
25+
### Documentation
26+
27+
* **mcp:** add a README button for one-click add to Cursor ([35634f3](https://github.com/Finch-API/finch-api-node/commit/35634f35ba2b5ab5e73b2217d8f4ea2dd78d8525))
28+
* **mcp:** add a README link to add server to VS Code or Claude Code ([e47f6f4](https://github.com/Finch-API/finch-api-node/commit/e47f6f4c42ddb2f4174c028edd6b1c2406d16631))
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)