Skip to content

Commit cec80f5

Browse files
release: 7.0.0
1 parent 33ad7f4 commit cec80f5

File tree

6 files changed

+32
-5
lines changed

6 files changed

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

3+
## 7.0.0 (2025-11-08)
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 ([24732c7](https://github.com/Finch-API/finch-api-node/commit/24732c7fcd18c96c61f0eccbcce41da186be7920))
10+
* **api:** move node to typescript generator ([3bdfd80](https://github.com/Finch-API/finch-api-node/commit/3bdfd800266983e402c4ac2c2f8026ab2a745e27))
11+
* **api:** update automated code reviewer selection ([ddc390e](https://github.com/Finch-API/finch-api-node/commit/ddc390e1f7e1e54a0afc0d4429eba457fc3d39f2))
12+
* **mcp:** enable optional code execution tool on http mcp servers ([6efefdc](https://github.com/Finch-API/finch-api-node/commit/6efefdc43febd69bea6295476edb063229590c6c))
13+
14+
15+
### Chores
16+
17+
* **internal:** codegen related update ([33ad7f4](https://github.com/Finch-API/finch-api-node/commit/33ad7f4efc2a9e41f4cf75f7ecd4ca7c35bbdef9))
18+
* **internal:** codegen related update ([b80e76d](https://github.com/Finch-API/finch-api-node/commit/b80e76d09e435d5b17d2c8e6d6f1c791fcbe72b0))
19+
* mcp code tool explicit error message when missing a run function ([187000a](https://github.com/Finch-API/finch-api-node/commit/187000aedca0eb78995881f6630853dc027af3ad))
20+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([e6c3b4c](https://github.com/Finch-API/finch-api-node/commit/e6c3b4c9e2217de39aad2e26a115fa37196c1282))
21+
* **mcp:** add line numbers to code tool errors ([fde28e4](https://github.com/Finch-API/finch-api-node/commit/fde28e4beb720b82daa883c15c03aba071a3fde4))
22+
* sync repo ([9c9134f](https://github.com/Finch-API/finch-api-node/commit/9c9134fd341136b410b297b4068d8b15f5d30dd2))
23+
24+
25+
### Documentation
26+
27+
* **mcp:** add a README button for one-click add to Cursor ([7e6d608](https://github.com/Finch-API/finch-api-node/commit/7e6d608fac3c3a1ed75581d729cc46ec5e2937a0))
28+
* **mcp:** add a README link to add server to VS Code or Claude Code ([32f41e6](https://github.com/Finch-API/finch-api-node/commit/32f41e6fef2338749fce180dce8e4e0f3e62d4bf))
29+
330
## 6.38.0 (2025-10-27)
431

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