Skip to content

Commit 93c5167

Browse files
release: 7.0.0
1 parent b9c0640 commit 93c5167

File tree

6 files changed

+30
-5
lines changed

6 files changed

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

3+
## 7.0.0 (2025-11-06)
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 ([725d859](https://github.com/Finch-API/finch-api-node/commit/725d859f11334227b20416ebfdc462db7a79f71c))
10+
* **api:** move node to typescript generator ([d6b67cc](https://github.com/Finch-API/finch-api-node/commit/d6b67cc15660b6a54d9ec939faaba179fe19cfe5))
11+
* **api:** update automated code reviewer selection ([7f60cef](https://github.com/Finch-API/finch-api-node/commit/7f60cef995c2d3a195cc9a225a61d8b264edd5a0))
12+
* **mcp:** enable optional code execution tool on http mcp servers ([61b82c0](https://github.com/Finch-API/finch-api-node/commit/61b82c0fd703d9af20b0cd64b671976db2bebd5b))
13+
14+
15+
### Chores
16+
17+
* **internal:** codegen related update ([b9c0640](https://github.com/Finch-API/finch-api-node/commit/b9c0640ae21813fc5297171b93972edf38616566))
18+
* mcp code tool explicit error message when missing a run function ([6aea919](https://github.com/Finch-API/finch-api-node/commit/6aea9190cc475a3b52f29beb3ab8e516e66b817d))
19+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([369ad0a](https://github.com/Finch-API/finch-api-node/commit/369ad0a1029abccec0b7b1e2367a05677d0a2044))
20+
* **mcp:** add line numbers to code tool errors ([019e0ad](https://github.com/Finch-API/finch-api-node/commit/019e0ad0b57cef9354c93a366dca3e2872aee423))
21+
* sync repo ([5130a7c](https://github.com/Finch-API/finch-api-node/commit/5130a7c17218f432008d4868a326da0e3606421f))
22+
23+
24+
### Documentation
25+
26+
* **mcp:** add a README button for one-click add to Cursor ([499d43f](https://github.com/Finch-API/finch-api-node/commit/499d43fb2c288283ba1014454bc3123525ae62f8))
27+
328
## 6.38.0 (2025-10-27)
429

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