Skip to content

Commit 47eaff4

Browse files
release: 7.0.0
1 parent 9e87e92 commit 47eaff4

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 ([82f9590](https://github.com/Finch-API/finch-api-node/commit/82f959015d84f64b205511a1b778f1ac6e38bfab))
10+
* **api:** move node to typescript generator ([669d163](https://github.com/Finch-API/finch-api-node/commit/669d1635b09cf59242a4f588492af82af5126f5e))
11+
* **api:** update automated code reviewer selection ([328c52e](https://github.com/Finch-API/finch-api-node/commit/328c52e3f19ddc9e267603b4d016c08664a818ab))
12+
* **mcp:** enable optional code execution tool on http mcp servers ([7d305ce](https://github.com/Finch-API/finch-api-node/commit/7d305ce9c70815525eb927ef6cda99bba9dfa0fb))
13+
14+
15+
### Chores
16+
17+
* **internal:** codegen related update ([d9d0729](https://github.com/Finch-API/finch-api-node/commit/d9d07299beed4417320360d6f9f3a4576f6f2873))
18+
* mcp code tool explicit error message when missing a run function ([acd03fc](https://github.com/Finch-API/finch-api-node/commit/acd03fcb66ef1284f259881daf12da6f03d02748))
19+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([5696110](https://github.com/Finch-API/finch-api-node/commit/56961105d91aff77c45ad341877b46a700066b3f))
20+
* **mcp:** add line numbers to code tool errors ([92497b8](https://github.com/Finch-API/finch-api-node/commit/92497b89900245fbb552409f5e5d21242b825e9b))
21+
* sync repo ([5872ee2](https://github.com/Finch-API/finch-api-node/commit/5872ee2ad07e48274704ddb1e7c76c0543cbe559))
22+
23+
24+
### Documentation
25+
26+
* **mcp:** add a README button for one-click add to Cursor ([96d62c2](https://github.com/Finch-API/finch-api-node/commit/96d62c2c5e096356577f73210b98448f714a0a0b))
27+
* **mcp:** add a README link to add server to VS Code or Claude Code ([9e87e92](https://github.com/Finch-API/finch-api-node/commit/9e87e92e09d5a25cdcf139b3642c265742f54b88))
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)