Skip to content

Commit fea4698

Browse files
release: 7.0.0
1 parent db72793 commit fea4698

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-10)
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 ([09e18d8](https://github.com/Finch-API/finch-api-node/commit/09e18d8c17b30f681cdff6c1d89f633ef437f37c))
10+
* **api:** api update ([e41883e](https://github.com/Finch-API/finch-api-node/commit/e41883ec55f5c6a843aafc045474befd1894f577))
11+
* **api:** move node to typescript generator ([5426615](https://github.com/Finch-API/finch-api-node/commit/54266154ec65599348621e8aae70c4c39f0ca56c))
12+
* **api:** update automated code reviewer selection ([14c462e](https://github.com/Finch-API/finch-api-node/commit/14c462e00f1c703fcb3c7dcadbd3f3b28e1c8323))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([8724291](https://github.com/Finch-API/finch-api-node/commit/8724291a051a1048e71c8560b7cd8a3791248328))
14+
15+
16+
### Chores
17+
18+
* **internal:** codegen related update ([682070b](https://github.com/Finch-API/finch-api-node/commit/682070b8cd7cf4cf58ebf69e164a8539fc89f35f))
19+
* **internal:** codegen related update ([089dd59](https://github.com/Finch-API/finch-api-node/commit/089dd59938d5b5df07f771dd64bf2f218fe8b811))
20+
* mcp code tool explicit error message when missing a run function ([8795aea](https://github.com/Finch-API/finch-api-node/commit/8795aeaf3b0c7ee40a9c91906f56441074f4c888))
21+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([27a0291](https://github.com/Finch-API/finch-api-node/commit/27a0291394a4ae107d1776a96b68a8583d2b7b22))
22+
* **mcp:** add line numbers to code tool errors ([f3784be](https://github.com/Finch-API/finch-api-node/commit/f3784be8febb3aacdec88c5a3c9ea229948b69be))
23+
* **mcp:** clarify http auth error ([db72793](https://github.com/Finch-API/finch-api-node/commit/db72793fb555e88458b1323b5332146f3c8421b7))
24+
* sync repo ([aaab8f4](https://github.com/Finch-API/finch-api-node/commit/aaab8f4634e240afb7a569ae93e63b80646b9cfe))
25+
26+
27+
### Documentation
28+
29+
* **mcp:** add a README button for one-click add to Cursor ([5fe9239](https://github.com/Finch-API/finch-api-node/commit/5fe92399f8f0706c628271a286090cd062814a0c))
30+
* **mcp:** add a README link to add server to VS Code or Claude Code ([24cc27c](https://github.com/Finch-API/finch-api-node/commit/24cc27c71c73af7d74b8c1585f7661deb78ecbfc))
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)