Skip to content

Commit faf8b90

Browse files
release: 7.0.0
1 parent 7d8fade commit faf8b90

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 ([f437cf0](https://github.com/Finch-API/finch-api-node/commit/f437cf05b3f2ee9910bca43419c891701945b04c))
10+
* **api:** move node to typescript generator ([2f95364](https://github.com/Finch-API/finch-api-node/commit/2f95364cfca48b23d9088309d28fcc1520813c65))
11+
* **api:** update automated code reviewer selection ([feec4f6](https://github.com/Finch-API/finch-api-node/commit/feec4f60b285d47157e462b724c3f3d41bfde710))
12+
* **mcp:** enable optional code execution tool on http mcp servers ([c71e0d4](https://github.com/Finch-API/finch-api-node/commit/c71e0d46024c3e7721eab4be0821303a85e4ec87))
13+
14+
15+
### Chores
16+
17+
* **internal:** codegen related update ([7d8fade](https://github.com/Finch-API/finch-api-node/commit/7d8fade4d26ef11064263fd17e5ccdf4768ef112))
18+
* **internal:** codegen related update ([cc2ffa6](https://github.com/Finch-API/finch-api-node/commit/cc2ffa6c6ebaf53ebc1912e10c740fae935c13bf))
19+
* mcp code tool explicit error message when missing a run function ([de072ed](https://github.com/Finch-API/finch-api-node/commit/de072eda29012f20d2eac3236bcb30a539791f05))
20+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([d88b127](https://github.com/Finch-API/finch-api-node/commit/d88b127bd04cd26e7ff49208fc5eb3391f632b44))
21+
* **mcp:** add line numbers to code tool errors ([b9eb865](https://github.com/Finch-API/finch-api-node/commit/b9eb86586bef6d4cce11a95466a7fa31767a6fc0))
22+
* sync repo ([12c61c4](https://github.com/Finch-API/finch-api-node/commit/12c61c419d628eedbb73b040c65477324aa3c40d))
23+
24+
25+
### Documentation
26+
27+
* **mcp:** add a README button for one-click add to Cursor ([05232db](https://github.com/Finch-API/finch-api-node/commit/05232dbbe32ee8565034c8a4fcf205643f7abfc7))
28+
* **mcp:** add a README link to add server to VS Code or Claude Code ([86f45fe](https://github.com/Finch-API/finch-api-node/commit/86f45feee63da25e0db452788af46d6ef8933e57))
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)