Skip to content

Commit dbe75b8

Browse files
release: 7.0.0
1 parent e9eeb4f commit dbe75b8

File tree

6 files changed

+31
-5
lines changed

6 files changed

+31
-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: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
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 ([bb4b1fb](https://github.com/Finch-API/finch-api-node/commit/bb4b1fb0641067f4b08d8629e670253a7cf7eae8))
10+
* **api:** move node to typescript generator ([e6b759f](https://github.com/Finch-API/finch-api-node/commit/e6b759f2819b669af9d301ea6cee16e89015a1ce))
11+
* **api:** update automated code reviewer selection ([3eedf18](https://github.com/Finch-API/finch-api-node/commit/3eedf188d097e55466aebde51da03e2abe0d071f))
12+
* **mcp:** enable optional code execution tool on http mcp servers ([ac64bcb](https://github.com/Finch-API/finch-api-node/commit/ac64bcb131eed0079a2899b3497fa7d256085227))
13+
14+
15+
### Chores
16+
17+
* **internal:** codegen related update ([43b59f8](https://github.com/Finch-API/finch-api-node/commit/43b59f80b33f868b6c28992a01f2ac6913fa4f6c))
18+
* mcp code tool explicit error message when missing a run function ([513f18d](https://github.com/Finch-API/finch-api-node/commit/513f18dec0a5ccd60265880f1c26274bb92c7d2d))
19+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([8eff81f](https://github.com/Finch-API/finch-api-node/commit/8eff81fb148abafc76c42d52d71bfcfd1d568da4))
20+
* **mcp:** add line numbers to code tool errors ([612fc09](https://github.com/Finch-API/finch-api-node/commit/612fc09471e6041d7a79a52ea6324e3090129f5e))
21+
* sync repo ([5cfb12a](https://github.com/Finch-API/finch-api-node/commit/5cfb12a8d354c27d76b0480c211d2eddfbbe1b2b))
22+
23+
24+
### Documentation
25+
26+
* **mcp:** add a README button for one-click add to Cursor ([986ae8f](https://github.com/Finch-API/finch-api-node/commit/986ae8f99d97a6910f5c40433d598b95f1d7a189))
27+
* **mcp:** add a README link to add server to VS Code or Claude Code ([e9eeb4f](https://github.com/Finch-API/finch-api-node/commit/e9eeb4f9b92cad94a2552ecb0cc93896de9fb60c))
28+
329
## 6.38.0 (2025-10-27)
430

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