Skip to content

Commit ee12c78

Browse files
release: 7.0.0
1 parent 73b2356 commit ee12c78

File tree

6 files changed

+40
-5
lines changed

6 files changed

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

3+
## 7.0.0 (2025-11-13)
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 ([f5422b1](https://github.com/Finch-API/finch-api-node/commit/f5422b1c45997091333defb4f9c5a920f6fe98d3))
10+
* **api:** api update ([952b76f](https://github.com/Finch-API/finch-api-node/commit/952b76f762d53eb317a5fac1e4b311c01b8512d6))
11+
* **api:** move node to typescript generator ([9e559ec](https://github.com/Finch-API/finch-api-node/commit/9e559eceab4c34629f9979e2bef02f07ac5c0610))
12+
* **api:** update automated code reviewer selection ([76d88ca](https://github.com/Finch-API/finch-api-node/commit/76d88ca13cff3dab28df9ce0ef4107b37c243459))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([64b50d8](https://github.com/Finch-API/finch-api-node/commit/64b50d85c96ae5bc004137729e22a1a7145e3af4))
14+
15+
16+
### Bug Fixes
17+
18+
* **mcp:** return tool execution error on jq failure ([3d4e04f](https://github.com/Finch-API/finch-api-node/commit/3d4e04f0974f7e9929ab214ba35f1d4134b63371))
19+
20+
21+
### Chores
22+
23+
* **internal:** codegen related update ([fe4c668](https://github.com/Finch-API/finch-api-node/commit/fe4c668c77d76457f1760ab802ed45405c282031))
24+
* **internal:** codegen related update ([a2e6ae7](https://github.com/Finch-API/finch-api-node/commit/a2e6ae717448e11f3098019814d4fa1acc1b227d))
25+
* mcp code tool explicit error message when missing a run function ([f8b4d64](https://github.com/Finch-API/finch-api-node/commit/f8b4d64b9b7d75ff341899cd829d8929d528e61e))
26+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([de6c9de](https://github.com/Finch-API/finch-api-node/commit/de6c9dec1bc82880df741bcb01091c257b99d62a))
27+
* **mcp:** add line numbers to code tool errors ([81c9070](https://github.com/Finch-API/finch-api-node/commit/81c907058e0ad8c65a6ece58721798031d11433d))
28+
* **mcp:** clarify http auth error ([d74fd64](https://github.com/Finch-API/finch-api-node/commit/d74fd648ad7f14399ed65d9cf8dbbbc94bfbb5d6))
29+
* **mcp:** upgrade jq-web ([73b2356](https://github.com/Finch-API/finch-api-node/commit/73b2356221467405c574adbf84fd7c627161be34))
30+
* sync repo ([c454d5f](https://github.com/Finch-API/finch-api-node/commit/c454d5f5629c91d96e5c0f2a4f40fb66ffc6347c))
31+
32+
33+
### Documentation
34+
35+
* **mcp:** add a README button for one-click add to Cursor ([f6c958d](https://github.com/Finch-API/finch-api-node/commit/f6c958d5ef92698b189fbdb36b4a568b48f2ba8c))
36+
* **mcp:** add a README link to add server to VS Code or Claude Code ([b03ada6](https://github.com/Finch-API/finch-api-node/commit/b03ada6f9ea9e6badc913262ed18ec9269f02ea8))
37+
338
## 6.38.0 (2025-10-27)
439

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