Skip to content

Commit b55bac2

Browse files
release: 7.0.0
1 parent e8e36f5 commit b55bac2

6 files changed

Lines changed: 30 additions & 5 deletions

File tree

.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 ([9236033](https://github.com/Finch-API/finch-api-node/commit/9236033e39ecd725354d9c173e7c84456c0eab8f))
10+
* **api:** move node to typescript generator ([e17d1ec](https://github.com/Finch-API/finch-api-node/commit/e17d1ec2d03a818fc8d264e2bd7ca244902e31cd))
11+
* **api:** update automated code reviewer selection ([6fee7e2](https://github.com/Finch-API/finch-api-node/commit/6fee7e28b9849df1d5b4db0aa5511884c0b7129c))
12+
* **mcp:** enable optional code execution tool on http mcp servers ([1139911](https://github.com/Finch-API/finch-api-node/commit/11399116fd262577b4333642de7b1f2c0a84800a))
13+
14+
15+
### Chores
16+
17+
* **internal:** codegen related update ([e8e36f5](https://github.com/Finch-API/finch-api-node/commit/e8e36f599a9d663be6b343dcc7c7c2f48725d736))
18+
* mcp code tool explicit error message when missing a run function ([6de0e9a](https://github.com/Finch-API/finch-api-node/commit/6de0e9a75539cf669487da0c0997c5be68f6b269))
19+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([d0a03cc](https://github.com/Finch-API/finch-api-node/commit/d0a03cc3a6a2acbeaae848d45ae62f06ee7b9d4e))
20+
* **mcp:** add line numbers to code tool errors ([4271184](https://github.com/Finch-API/finch-api-node/commit/4271184425c6e6240b647215cc7f908b2dfe6eee))
21+
* sync repo ([172397b](https://github.com/Finch-API/finch-api-node/commit/172397b82f15b8a90a3f19f3f98de2231aa940b4))
22+
23+
24+
### Documentation
25+
26+
* **mcp:** add a README button for one-click add to Cursor ([ba85de6](https://github.com/Finch-API/finch-api-node/commit/ba85de6425acfa38b193872d0e3bedab114ce8cc))
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)