Skip to content

Commit 7768731

Browse files
release: 7.0.0
1 parent 99e9160 commit 7768731

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-09)
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 ([51cb652](https://github.com/Finch-API/finch-api-node/commit/51cb652287fabe26db48984127888d8d61475b8f))
10+
* **api:** move node to typescript generator ([e05f9e6](https://github.com/Finch-API/finch-api-node/commit/e05f9e6eca54b243bed0fe4abfcd2ba5a8ca92f6))
11+
* **api:** update automated code reviewer selection ([0cae442](https://github.com/Finch-API/finch-api-node/commit/0cae44226f3b857826547687300b872f43301834))
12+
* **mcp:** enable optional code execution tool on http mcp servers ([6a13916](https://github.com/Finch-API/finch-api-node/commit/6a139169b864b5e817189d27ba374525d8bcb707))
13+
14+
15+
### Chores
16+
17+
* **internal:** codegen related update ([99e9160](https://github.com/Finch-API/finch-api-node/commit/99e9160a0a230fcd59c91d55acbd2e14336f739d))
18+
* **internal:** codegen related update ([9546f64](https://github.com/Finch-API/finch-api-node/commit/9546f64a9b863019c21193ebf95bdc440180e0ef))
19+
* mcp code tool explicit error message when missing a run function ([87799f2](https://github.com/Finch-API/finch-api-node/commit/87799f2cc97077730cde53f571d4830ef50077e2))
20+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([f737937](https://github.com/Finch-API/finch-api-node/commit/f73793764bfa6bc920bb1c78e95f02ee5a0e7580))
21+
* **mcp:** add line numbers to code tool errors ([7fa6faf](https://github.com/Finch-API/finch-api-node/commit/7fa6faf904c6c8ca1609330d00a117efcac116e3))
22+
* sync repo ([bb32bda](https://github.com/Finch-API/finch-api-node/commit/bb32bdac6fd7e738d7f2760f9624160174641baa))
23+
24+
25+
### Documentation
26+
27+
* **mcp:** add a README button for one-click add to Cursor ([998cd1e](https://github.com/Finch-API/finch-api-node/commit/998cd1ecff2152cb6ef89cb0719a9fa17fbe5043))
28+
* **mcp:** add a README link to add server to VS Code or Claude Code ([60e406b](https://github.com/Finch-API/finch-api-node/commit/60e406b5ee72c57b5f90e4e15c34d710291113c4))
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)