Skip to content

Commit c0e7b90

Browse files
release: 7.0.0
1 parent 55b8bc8 commit c0e7b90

File tree

6 files changed

+30
-5
lines changed

6 files changed

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

3+
## 7.0.0 (2025-11-06)
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 ([e34a2e7](https://github.com/Finch-API/finch-api-node/commit/e34a2e79c5282dddb4ed3e76fb2bc3f19f639aaf))
10+
* **api:** move node to typescript generator ([c26ce42](https://github.com/Finch-API/finch-api-node/commit/c26ce42b50bf84728411337fbd0a0a36a4cee4b1))
11+
* **api:** update automated code reviewer selection ([b4ba036](https://github.com/Finch-API/finch-api-node/commit/b4ba0369236b052c2710176d7d47b2959aecb88f))
12+
* **mcp:** enable optional code execution tool on http mcp servers ([3a64eaf](https://github.com/Finch-API/finch-api-node/commit/3a64eafb0626df7cea78b319089c13c7b54688e6))
13+
14+
15+
### Chores
16+
17+
* **internal:** codegen related update ([55b8bc8](https://github.com/Finch-API/finch-api-node/commit/55b8bc8f2169f4fafa6c296ef3ebb0300accebf5))
18+
* mcp code tool explicit error message when missing a run function ([fa56df7](https://github.com/Finch-API/finch-api-node/commit/fa56df70201c917326bde13b9b536bed3dc31e4c))
19+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([a844ab4](https://github.com/Finch-API/finch-api-node/commit/a844ab48b81b23b5fcbd8af9dad677ccaf977265))
20+
* **mcp:** add line numbers to code tool errors ([1c07623](https://github.com/Finch-API/finch-api-node/commit/1c07623e04dd8bc9d21119c24b50f8f21863a40b))
21+
* sync repo ([4a9a321](https://github.com/Finch-API/finch-api-node/commit/4a9a3212cae5782b924adf9d010ba1cf34f513f5))
22+
23+
24+
### Documentation
25+
26+
* **mcp:** add a README button for one-click add to Cursor ([f57cd07](https://github.com/Finch-API/finch-api-node/commit/f57cd071b2cc2519497bf7d52304764b9eb4c403))
27+
328
## 6.38.0 (2025-10-27)
429

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