Skip to content

Commit 608df35

Browse files
release: 7.0.0
1 parent c0ecd00 commit 608df35

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 ([f164756](https://github.com/Finch-API/finch-api-node/commit/f164756f0aef87290327c07e9bb55a6335b18018))
10+
* **api:** move node to typescript generator ([d2e0be8](https://github.com/Finch-API/finch-api-node/commit/d2e0be8a9e87ff90413a95e03e40dfbeb7096e26))
11+
* **api:** update automated code reviewer selection ([68de69b](https://github.com/Finch-API/finch-api-node/commit/68de69b4776f3c43fae5996766764b9cad694cd9))
12+
* **mcp:** enable optional code execution tool on http mcp servers ([8fc17a4](https://github.com/Finch-API/finch-api-node/commit/8fc17a407cd72dd78c82550a67981cca16c04db7))
13+
14+
15+
### Chores
16+
17+
* **internal:** codegen related update ([2956a6f](https://github.com/Finch-API/finch-api-node/commit/2956a6f28c1f4123c2d9bb0390ca88e880d9700c))
18+
* mcp code tool explicit error message when missing a run function ([df95313](https://github.com/Finch-API/finch-api-node/commit/df953132f428da2af9370efbe7b036fd3722d129))
19+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([eb9c6ca](https://github.com/Finch-API/finch-api-node/commit/eb9c6ca281c68374a39daf508098906b30e76582))
20+
* **mcp:** add line numbers to code tool errors ([956bdb4](https://github.com/Finch-API/finch-api-node/commit/956bdb445301f7bcd77bab682e037bbf867e2748))
21+
* sync repo ([9ad6af1](https://github.com/Finch-API/finch-api-node/commit/9ad6af1836c7b1c1ba945dca08bee463a5dd2402))
22+
23+
24+
### Documentation
25+
26+
* **mcp:** add a README button for one-click add to Cursor ([847e68e](https://github.com/Finch-API/finch-api-node/commit/847e68ea72982d1956188721fc3e5a840e0568bb))
27+
* **mcp:** add a README link to add server to VS Code or Claude Code ([c0ecd00](https://github.com/Finch-API/finch-api-node/commit/c0ecd008b2472209b9016df6161238414d42bdad))
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)