Skip to content

Commit c9ee92d

Browse files
release: 7.0.0
1 parent 54d5570 commit c9ee92d

File tree

6 files changed

+33
-5
lines changed

6 files changed

+33
-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: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,33 @@
11
# Changelog
22

3+
## 7.0.0 (2025-11-10)
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 ([54d5570](https://github.com/Finch-API/finch-api-node/commit/54d55702b267e762a74808032226e34e06b510a3))
10+
* **api:** api update ([6c770c9](https://github.com/Finch-API/finch-api-node/commit/6c770c9a6441cacdf8381f0010e35d6b7852f7a9))
11+
* **api:** move node to typescript generator ([9299c23](https://github.com/Finch-API/finch-api-node/commit/9299c23b0181a87e8fbd163dd714391917babc0b))
12+
* **api:** update automated code reviewer selection ([7f68cf0](https://github.com/Finch-API/finch-api-node/commit/7f68cf0268ad6a05e55fca6472f0d129ff785e6a))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([56a69db](https://github.com/Finch-API/finch-api-node/commit/56a69db96fef19e0d5c760126b4cd962e9f78a62))
14+
15+
16+
### Chores
17+
18+
* **internal:** codegen related update ([9ba3b48](https://github.com/Finch-API/finch-api-node/commit/9ba3b482b518d475f6d5559e6bb86e4043f70d6d))
19+
* **internal:** codegen related update ([226123a](https://github.com/Finch-API/finch-api-node/commit/226123af8816d7da916289f2113c13b278292aef))
20+
* mcp code tool explicit error message when missing a run function ([d7f7013](https://github.com/Finch-API/finch-api-node/commit/d7f70134e93d3e2a94587f819f8fe0ce74b99705))
21+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([58f15da](https://github.com/Finch-API/finch-api-node/commit/58f15da43f7c9ac5863960dac2d5235aff18a8cb))
22+
* **mcp:** add line numbers to code tool errors ([6c203f6](https://github.com/Finch-API/finch-api-node/commit/6c203f6b8ffc3b64d4c55a7da489a324e2234e4b))
23+
* sync repo ([5c65791](https://github.com/Finch-API/finch-api-node/commit/5c657915dfeba1e9242f7a32b2c339feeb5e31ed))
24+
25+
26+
### Documentation
27+
28+
* **mcp:** add a README button for one-click add to Cursor ([8a61de2](https://github.com/Finch-API/finch-api-node/commit/8a61de2745d40ba34d2b6c4f31198332f31d10ef))
29+
* **mcp:** add a README link to add server to VS Code or Claude Code ([eae7e21](https://github.com/Finch-API/finch-api-node/commit/eae7e212fc9fe08ef7ba50c364e11d2bc55d254c))
30+
331
## 6.38.0 (2025-10-27)
432

533
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)