Skip to content

Commit eaadf35

Browse files
release: 7.0.0
1 parent 43f960a commit eaadf35

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 ([1061518](https://github.com/Finch-API/finch-api-node/commit/1061518cf69780718d1f0c793c55df8dc11e4dc0))
10+
* **api:** move node to typescript generator ([1d23e1b](https://github.com/Finch-API/finch-api-node/commit/1d23e1bb28d0bd4a9f32d99a013db1e8014b4edb))
11+
* **api:** update automated code reviewer selection ([c002520](https://github.com/Finch-API/finch-api-node/commit/c002520bbfcd6f7166e9a875826c7dbaf1149d3d))
12+
* **mcp:** enable optional code execution tool on http mcp servers ([d2ff7fa](https://github.com/Finch-API/finch-api-node/commit/d2ff7fa249bfd1f30aa513575e6c2638490f6f89))
13+
14+
15+
### Chores
16+
17+
* **internal:** codegen related update ([43f960a](https://github.com/Finch-API/finch-api-node/commit/43f960ae5c3d3746ff48948bd90d7023d0fe9456))
18+
* **internal:** codegen related update ([4f5145e](https://github.com/Finch-API/finch-api-node/commit/4f5145e249b96b8ff372421b1b5a8f037cb55dc3))
19+
* mcp code tool explicit error message when missing a run function ([074bcc0](https://github.com/Finch-API/finch-api-node/commit/074bcc047646fdb85e427e2a1f54142ef8565b50))
20+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([ffb03da](https://github.com/Finch-API/finch-api-node/commit/ffb03dae9dbc7211a50d43c8d4a3bd32818de041))
21+
* **mcp:** add line numbers to code tool errors ([9e5effb](https://github.com/Finch-API/finch-api-node/commit/9e5effb25af3e4bd30b732653e4ab11514994d31))
22+
* sync repo ([1365bc2](https://github.com/Finch-API/finch-api-node/commit/1365bc299c55fe51f7bf9d499d3fe1cb18e8c8a1))
23+
24+
25+
### Documentation
26+
27+
* **mcp:** add a README button for one-click add to Cursor ([236bf8d](https://github.com/Finch-API/finch-api-node/commit/236bf8dca9f70be3f57f4bb2f6199595373bb9a7))
28+
* **mcp:** add a README link to add server to VS Code or Claude Code ([1a40a84](https://github.com/Finch-API/finch-api-node/commit/1a40a842a08e02d79216063161e0ac0b2f2621c8))
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)