Skip to content

Commit 0331431

Browse files
release: 7.0.0
1 parent d9242cc commit 0331431

File tree

6 files changed

+33
-5
lines changed

6 files changed

+33
-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: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,33 @@
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 ([d9242cc](https://github.com/Finch-API/finch-api-node/commit/d9242cc10cfd4d00a598a9e44750c490d785ab72))
10+
* **api:** api update ([4f949fd](https://github.com/Finch-API/finch-api-node/commit/4f949fd9402f3c70be307b4969f2f2e419470328))
11+
* **api:** move node to typescript generator ([b065deb](https://github.com/Finch-API/finch-api-node/commit/b065deb4d2b5a71a9208f1cfb44a3f60c78d1e9a))
12+
* **api:** update automated code reviewer selection ([25b9019](https://github.com/Finch-API/finch-api-node/commit/25b90192e217ce95c43c4b830a7ff6dbbc9913f1))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([49f2ac4](https://github.com/Finch-API/finch-api-node/commit/49f2ac4b109eab41f653e17445b76575e7821368))
14+
15+
16+
### Chores
17+
18+
* **internal:** codegen related update ([0afa05a](https://github.com/Finch-API/finch-api-node/commit/0afa05a3465a4ad2a2c94b60b19c14e3ced9212d))
19+
* **internal:** codegen related update ([09e835f](https://github.com/Finch-API/finch-api-node/commit/09e835fb1651ed79b40c5101bf2ac41941729b77))
20+
* mcp code tool explicit error message when missing a run function ([4607b48](https://github.com/Finch-API/finch-api-node/commit/4607b48616aca5ed678f5837ad1051e7577c26ea))
21+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([f20a176](https://github.com/Finch-API/finch-api-node/commit/f20a1768b33c74d39fb83885d6ee9421bb24f2d6))
22+
* **mcp:** add line numbers to code tool errors ([dc2d4be](https://github.com/Finch-API/finch-api-node/commit/dc2d4be7796fbd4af0bb4ad055f6675bf19088b2))
23+
* sync repo ([77ccf75](https://github.com/Finch-API/finch-api-node/commit/77ccf75dd0cf4bc7bb56775da200cfb9eef79b97))
24+
25+
26+
### Documentation
27+
28+
* **mcp:** add a README button for one-click add to Cursor ([88a2a2c](https://github.com/Finch-API/finch-api-node/commit/88a2a2c822fb9c1392f7839882f9a5ce169a0496))
29+
* **mcp:** add a README link to add server to VS Code or Claude Code ([c4a8db5](https://github.com/Finch-API/finch-api-node/commit/c4a8db5df1ae50b695ee04f22e5c085530bffe16))
30+
331
## 6.38.0 (2025-10-27)
432

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