Skip to content

Commit 8619f02

Browse files
release: 7.0.0
1 parent 5a6a665 commit 8619f02

File tree

6 files changed

+29
-5
lines changed

6 files changed

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

3+
## 7.0.0 (2025-11-05)
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 ([c78b2e7](https://github.com/Finch-API/finch-api-node/commit/c78b2e7b1335a9261931c3485155947b99061f63))
10+
* **api:** move node to typescript generator ([4065b08](https://github.com/Finch-API/finch-api-node/commit/4065b089d62263f8afd99ec3a64c51a9b25bef0b))
11+
* **api:** update automated code reviewer selection ([f2eef87](https://github.com/Finch-API/finch-api-node/commit/f2eef87620ef871d1b3ddab0ff8fbea931558a1c))
12+
* **mcp:** enable optional code execution tool on http mcp servers ([fa1ff72](https://github.com/Finch-API/finch-api-node/commit/fa1ff72f362bac2584beb672340c6f40786d1f3e))
13+
14+
15+
### Chores
16+
17+
* mcp code tool explicit error message when missing a run function ([02dd1df](https://github.com/Finch-API/finch-api-node/commit/02dd1df23075199047f2df3a65022b5d7719cf1f))
18+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([8a76f70](https://github.com/Finch-API/finch-api-node/commit/8a76f7035be72e0aa8cf2de16bb398544bd2d728))
19+
* **mcp:** add line numbers to code tool errors ([6aadae5](https://github.com/Finch-API/finch-api-node/commit/6aadae58aab625352b18ac34abcdc13db74d2ecb))
20+
* sync repo ([e191e03](https://github.com/Finch-API/finch-api-node/commit/e191e03a4d32c5c98053b076d54dcdc8581671f6))
21+
22+
23+
### Documentation
24+
25+
* **mcp:** add a README button for one-click add to Cursor ([5a6a665](https://github.com/Finch-API/finch-api-node/commit/5a6a665ff2123f762dce7a7dd17f482c835194e3))
26+
327
## 6.38.0 (2025-10-27)
428

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