Skip to content

Commit c69aec1

Browse files
release: 7.0.0
1 parent 46e81d0 commit c69aec1

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 ([74d42d0](https://github.com/Finch-API/finch-api-node/commit/74d42d0b237f3330bfe914dcf360f64c9630934f))
10+
* **api:** move node to typescript generator ([f0960e6](https://github.com/Finch-API/finch-api-node/commit/f0960e601931c81ce9cadcbf23024aa8bd31e180))
11+
* **api:** update automated code reviewer selection ([1d48263](https://github.com/Finch-API/finch-api-node/commit/1d4826301e42ddbf05698500a263fe3910eb880a))
12+
* **mcp:** enable optional code execution tool on http mcp servers ([3ec6602](https://github.com/Finch-API/finch-api-node/commit/3ec6602a5d810278c4d0e3da89c4deba02b79f43))
13+
14+
15+
### Chores
16+
17+
* **internal:** codegen related update ([aa9d75c](https://github.com/Finch-API/finch-api-node/commit/aa9d75cc48cb74f8b2cfb2568dcb543a5983e935))
18+
* mcp code tool explicit error message when missing a run function ([b5ce564](https://github.com/Finch-API/finch-api-node/commit/b5ce564ae08ff26adfee7a0e61a17724838bd67c))
19+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([d5a0ccb](https://github.com/Finch-API/finch-api-node/commit/d5a0ccb1d36c46219cee240c9c07282c2f9ba433))
20+
* **mcp:** add line numbers to code tool errors ([604bc83](https://github.com/Finch-API/finch-api-node/commit/604bc8321900c953d87e60736b0b7f20803aebdf))
21+
* sync repo ([9b45bf1](https://github.com/Finch-API/finch-api-node/commit/9b45bf199300648e3fd5eea9cf049d648e607c1c))
22+
23+
24+
### Documentation
25+
26+
* **mcp:** add a README button for one-click add to Cursor ([bfd2431](https://github.com/Finch-API/finch-api-node/commit/bfd24315398758ebbb55ae1f94070b3389a05b6e))
27+
* **mcp:** add a README link to add server to VS Code or Claude Code ([46e81d0](https://github.com/Finch-API/finch-api-node/commit/46e81d0e9ca69ca397eb7f19af1983461411acb2))
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)