Skip to content

Commit d3293bf

Browse files
release: 7.0.0
1 parent 2723556 commit d3293bf

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-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 ([56dab9c](https://github.com/Finch-API/finch-api-node/commit/56dab9c1e03c6d8ceff18dd7e4a29a6b080ea088))
10+
* **api:** move node to typescript generator ([b973e4c](https://github.com/Finch-API/finch-api-node/commit/b973e4c123333aadc688b5b66be341305893c34c))
11+
* **api:** update automated code reviewer selection ([17294ca](https://github.com/Finch-API/finch-api-node/commit/17294ca0223936960661656fcb8cd5ea3dc2a1e7))
12+
* **mcp:** enable optional code execution tool on http mcp servers ([86772a7](https://github.com/Finch-API/finch-api-node/commit/86772a720ce2e863e20921f2ac0f9d5301d20233))
13+
14+
15+
### Chores
16+
17+
* **internal:** codegen related update ([2723556](https://github.com/Finch-API/finch-api-node/commit/272355670d1883be1e25c42a30fdf4709102cffd))
18+
* **internal:** codegen related update ([55a7235](https://github.com/Finch-API/finch-api-node/commit/55a72352724db33b50e944dd9df65d365627a8c2))
19+
* mcp code tool explicit error message when missing a run function ([81ed7b0](https://github.com/Finch-API/finch-api-node/commit/81ed7b093c9fec1ba6fb867b665fe46ddc41fde7))
20+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([9d3fdeb](https://github.com/Finch-API/finch-api-node/commit/9d3fdebbad86b691054f6421880e55f905e2b6ce))
21+
* **mcp:** add line numbers to code tool errors ([8429896](https://github.com/Finch-API/finch-api-node/commit/84298968cce84e732bb6b42543a0b4d59dcbb243))
22+
* sync repo ([b3eab97](https://github.com/Finch-API/finch-api-node/commit/b3eab972fc80bac691bba7d4262706e3bc33d3a8))
23+
24+
25+
### Documentation
26+
27+
* **mcp:** add a README button for one-click add to Cursor ([5858188](https://github.com/Finch-API/finch-api-node/commit/58581884fb1d513b5af729b3ebc49e8a2b5df208))
28+
* **mcp:** add a README link to add server to VS Code or Claude Code ([6c77b83](https://github.com/Finch-API/finch-api-node/commit/6c77b839e2d3a7a085b9cca2eb7cd8887660d52f))
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)