Skip to content

Commit 835d909

Browse files
release: 7.0.0
1 parent f88719f commit 835d909

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-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 ([b99a0b0](https://github.com/Finch-API/finch-api-node/commit/b99a0b032c13b1796f9fbdaba5635d7dd08fff2b))
10+
* **api:** move node to typescript generator ([a7d36ca](https://github.com/Finch-API/finch-api-node/commit/a7d36ca857fe18e30e100aacfb84f373ce2edc85))
11+
* **api:** update automated code reviewer selection ([72a9f1f](https://github.com/Finch-API/finch-api-node/commit/72a9f1f9126828156fc652655ef0522f39fe5856))
12+
* **mcp:** enable optional code execution tool on http mcp servers ([d9548e3](https://github.com/Finch-API/finch-api-node/commit/d9548e3087bcef551ebb34ea5346b4fa1ff889b0))
13+
14+
15+
### Chores
16+
17+
* **internal:** codegen related update ([f88719f](https://github.com/Finch-API/finch-api-node/commit/f88719f493f231a65d386e3a1ad9a478d7453ca1))
18+
* **internal:** codegen related update ([124667e](https://github.com/Finch-API/finch-api-node/commit/124667e5294bd27ee27ff1ec3c76be6f674089a0))
19+
* mcp code tool explicit error message when missing a run function ([cd7dcf0](https://github.com/Finch-API/finch-api-node/commit/cd7dcf0c024e64e4447d47f079d69699a19a7a3b))
20+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([28c1d26](https://github.com/Finch-API/finch-api-node/commit/28c1d267718d71256b51883e3493fe245f8c5957))
21+
* **mcp:** add line numbers to code tool errors ([87e7198](https://github.com/Finch-API/finch-api-node/commit/87e71982d4f4d2114601212e288c15932a7b4e08))
22+
* sync repo ([b307a56](https://github.com/Finch-API/finch-api-node/commit/b307a56f5a3a121aa51b7272080b9d81fb4c0105))
23+
24+
25+
### Documentation
26+
27+
* **mcp:** add a README button for one-click add to Cursor ([a9441ed](https://github.com/Finch-API/finch-api-node/commit/a9441edf06c6cd4593368eeb9653cacf3f91b19e))
28+
* **mcp:** add a README link to add server to VS Code or Claude Code ([d4d5a07](https://github.com/Finch-API/finch-api-node/commit/d4d5a071a8f06c1e9afb1228fd37e5d8b6ca15b5))
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)