Skip to content

Commit a08ce6b

Browse files
release: 7.0.0
1 parent 9c77811 commit a08ce6b

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 ([9c77811](https://github.com/Finch-API/finch-api-node/commit/9c778110ebd70d19ffbfbf3d90a1361f1563dd81))
10+
* **api:** api update ([52a5ca1](https://github.com/Finch-API/finch-api-node/commit/52a5ca113d9eefa895b0746efabc7335c163223e))
11+
* **api:** move node to typescript generator ([5e1d5a1](https://github.com/Finch-API/finch-api-node/commit/5e1d5a1efa7a86e6396c3f61c1ee9877939f24d6))
12+
* **api:** update automated code reviewer selection ([06bad2c](https://github.com/Finch-API/finch-api-node/commit/06bad2c06d31ed7fced2134a7ed0be861e082521))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([677e49c](https://github.com/Finch-API/finch-api-node/commit/677e49cfcfb53ec5a723797fc6fe2b29efb80e8a))
14+
15+
16+
### Chores
17+
18+
* **internal:** codegen related update ([ce6f3c0](https://github.com/Finch-API/finch-api-node/commit/ce6f3c07dcfd5704042bfdfc6dca501788bcb305))
19+
* **internal:** codegen related update ([6d0e066](https://github.com/Finch-API/finch-api-node/commit/6d0e06661d0d5f3e8fa28299b90a275821a87c21))
20+
* mcp code tool explicit error message when missing a run function ([429a83c](https://github.com/Finch-API/finch-api-node/commit/429a83ca31458a349837a20b6b62a867efa439b0))
21+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([5a5b909](https://github.com/Finch-API/finch-api-node/commit/5a5b9090c94e4cd5e3e1ac4aed65bb69e121538e))
22+
* **mcp:** add line numbers to code tool errors ([3e37c07](https://github.com/Finch-API/finch-api-node/commit/3e37c074b274f8c5e466061e5e5c1c67f633c5a0))
23+
* sync repo ([82404bb](https://github.com/Finch-API/finch-api-node/commit/82404bbf2fd06dc0efadeb58a877ba0b85238c7f))
24+
25+
26+
### Documentation
27+
28+
* **mcp:** add a README button for one-click add to Cursor ([a8ef916](https://github.com/Finch-API/finch-api-node/commit/a8ef916b86fe5e15cb3543d26c36aaaeff27a102))
29+
* **mcp:** add a README link to add server to VS Code or Claude Code ([84ae938](https://github.com/Finch-API/finch-api-node/commit/84ae938ab6dfa82fd5e8c004e85659f6927b74ca))
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)