Skip to content

Commit 847c7d1

Browse files
release: 7.0.0
1 parent 01a750f commit 847c7d1

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 ([34b67ed](https://github.com/Finch-API/finch-api-node/commit/34b67edb2d66ef1cb76bb727b4c899d9391c841a))
10+
* **api:** move node to typescript generator ([6ece9d1](https://github.com/Finch-API/finch-api-node/commit/6ece9d1d7c6dd6a92e4179185417e7fb38810262))
11+
* **api:** update automated code reviewer selection ([628d669](https://github.com/Finch-API/finch-api-node/commit/628d6693ba6bbd9ba1bd2acd3cb41b13a5c54bac))
12+
* **mcp:** enable optional code execution tool on http mcp servers ([0b246bb](https://github.com/Finch-API/finch-api-node/commit/0b246bbdeb9dea6327e0c5e60b0380449c7cc497))
13+
14+
15+
### Chores
16+
17+
* **internal:** codegen related update ([01a750f](https://github.com/Finch-API/finch-api-node/commit/01a750f4612d33414cd4b04bfb035be716e6d241))
18+
* **internal:** codegen related update ([1e1564c](https://github.com/Finch-API/finch-api-node/commit/1e1564ca0c135a94cb9031162da26acabb5b5693))
19+
* mcp code tool explicit error message when missing a run function ([ab77528](https://github.com/Finch-API/finch-api-node/commit/ab77528e35619fc95dc45287b46c49c2fa12ce02))
20+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([f8610d9](https://github.com/Finch-API/finch-api-node/commit/f8610d952ccb1493744a4f92bcb3661a78ae7620))
21+
* **mcp:** add line numbers to code tool errors ([6816d62](https://github.com/Finch-API/finch-api-node/commit/6816d62eda916afc59730dea79e30a98550965ce))
22+
* sync repo ([09bcd30](https://github.com/Finch-API/finch-api-node/commit/09bcd30d67fc21bd46c2ef4e0748197a231616e2))
23+
24+
25+
### Documentation
26+
27+
* **mcp:** add a README button for one-click add to Cursor ([65fd793](https://github.com/Finch-API/finch-api-node/commit/65fd793b3407410ad58a917f4c37b30835c34a2e))
28+
* **mcp:** add a README link to add server to VS Code or Claude Code ([b8687e3](https://github.com/Finch-API/finch-api-node/commit/b8687e348907790c9878b8ac290ce869bb6435ad))
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)