Skip to content

Commit a6961e8

Browse files
release: 7.0.0
1 parent e64ca19 commit a6961e8

6 files changed

Lines changed: 29 additions & 5 deletions

File tree

.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 ([b70482a](https://github.com/Finch-API/finch-api-node/commit/b70482adbe5661a8207f4fa34940227a5a273595))
10+
* **api:** move node to typescript generator ([0fb2488](https://github.com/Finch-API/finch-api-node/commit/0fb2488cce6462a2b4c64ffe1292127977155a30))
11+
* **api:** update automated code reviewer selection ([5429555](https://github.com/Finch-API/finch-api-node/commit/54295557fb7c6892d4f3b2b9c4039333ffca2f29))
12+
* **mcp:** enable optional code execution tool on http mcp servers ([a361ae6](https://github.com/Finch-API/finch-api-node/commit/a361ae6c82181705d48ca6155ff71dbf05576ab2))
13+
14+
15+
### Chores
16+
17+
* mcp code tool explicit error message when missing a run function ([c83ff2b](https://github.com/Finch-API/finch-api-node/commit/c83ff2b8d57f80b63804dd3ea0ddd6dfae289808))
18+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([8da1c6a](https://github.com/Finch-API/finch-api-node/commit/8da1c6a4ee0fdaa343cfe662dac263194a253444))
19+
* **mcp:** add line numbers to code tool errors ([8d68e62](https://github.com/Finch-API/finch-api-node/commit/8d68e6206c4a4bd4abe06857c67cb184837fabca))
20+
* sync repo ([ca55af7](https://github.com/Finch-API/finch-api-node/commit/ca55af7df90d3080649cb7a8bbb893a71eba283e))
21+
22+
23+
### Documentation
24+
25+
* **mcp:** add a README button for one-click add to Cursor ([e64ca19](https://github.com/Finch-API/finch-api-node/commit/e64ca19a02861f66bbbf92599321978d2851037f))
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)