Skip to content

Commit d0da1c9

Browse files
release: 7.0.0
1 parent a33c2f6 commit d0da1c9

File tree

6 files changed

+34
-5
lines changed

6 files changed

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

3+
## 7.0.0 (2025-11-11)
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 ([3bdc4dd](https://github.com/Finch-API/finch-api-node/commit/3bdc4dd9c549174395f75bbbce3ffdcff351b0b5))
10+
* **api:** api update ([4c45200](https://github.com/Finch-API/finch-api-node/commit/4c45200dfb4e5568cc66af48a1bc36c985609065))
11+
* **api:** move node to typescript generator ([42ef008](https://github.com/Finch-API/finch-api-node/commit/42ef0083fc8c0faee93479e3ef0dfdb104125905))
12+
* **api:** update automated code reviewer selection ([e33dbfa](https://github.com/Finch-API/finch-api-node/commit/e33dbfac609f9ff814acd69c342d1ad3d78aba0b))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([49763fd](https://github.com/Finch-API/finch-api-node/commit/49763fd9b3234b2c101ee327427b55b39d6b8913))
14+
15+
16+
### Chores
17+
18+
* **internal:** codegen related update ([ea14895](https://github.com/Finch-API/finch-api-node/commit/ea148956c9b8a39020021570ef7d4876e4911fde))
19+
* **internal:** codegen related update ([8e0d56d](https://github.com/Finch-API/finch-api-node/commit/8e0d56d65fb3d7c3298a69da4585c13ea55a874e))
20+
* mcp code tool explicit error message when missing a run function ([0bb1fc0](https://github.com/Finch-API/finch-api-node/commit/0bb1fc029a671e86c336cb8d9b8f5ace4f30ba37))
21+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([86d52df](https://github.com/Finch-API/finch-api-node/commit/86d52dff2a119dbc659fafb3eefd46a088a90921))
22+
* **mcp:** add line numbers to code tool errors ([80eb603](https://github.com/Finch-API/finch-api-node/commit/80eb603d879d90fa55df6d107668e5aebd4e1426))
23+
* **mcp:** clarify http auth error ([a33c2f6](https://github.com/Finch-API/finch-api-node/commit/a33c2f6adeb848eca07ccf3b0170a74e49020518))
24+
* sync repo ([6dd41b5](https://github.com/Finch-API/finch-api-node/commit/6dd41b5ff5fad1b578d3b4d1388927edb1fea32b))
25+
26+
27+
### Documentation
28+
29+
* **mcp:** add a README button for one-click add to Cursor ([7e921f3](https://github.com/Finch-API/finch-api-node/commit/7e921f33207a0443b7ffeef27adcbf8661e6e381))
30+
* **mcp:** add a README link to add server to VS Code or Claude Code ([c9a0668](https://github.com/Finch-API/finch-api-node/commit/c9a06689181bd7be4665abd39ebcd582b7984a20))
31+
332
## 6.38.0 (2025-10-27)
433

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