Skip to content

Commit d140a97

Browse files
release: 7.0.0
1 parent 73ef3b1 commit d140a97

6 files changed

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

3+
## 7.0.0 (2025-11-11)
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 ([aaf11cc](https://github.com/Finch-API/finch-api-node/commit/aaf11cc8b935887e16c0bc9dc34c3dcb438494a9))
10+
* **api:** api update ([a7e6119](https://github.com/Finch-API/finch-api-node/commit/a7e6119242da5db8554134457954ca44f9646153))
11+
* **api:** move node to typescript generator ([b32099a](https://github.com/Finch-API/finch-api-node/commit/b32099aa65466c69e275489b19e88152bbe20151))
12+
* **api:** update automated code reviewer selection ([c0678ff](https://github.com/Finch-API/finch-api-node/commit/c0678ff32892a005a0f23ef63365f9d04a980281))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([991b614](https://github.com/Finch-API/finch-api-node/commit/991b6144b65d30f2a8e8f7451614b1f44effc0f9))
14+
15+
16+
### Chores
17+
18+
* **internal:** codegen related update ([e9f5442](https://github.com/Finch-API/finch-api-node/commit/e9f5442a715fbc60eb22c85cc94a594683a0912a))
19+
* **internal:** codegen related update ([c023d48](https://github.com/Finch-API/finch-api-node/commit/c023d48b7deae8dfe01622520ac8e631c447f144))
20+
* mcp code tool explicit error message when missing a run function ([4b2ba24](https://github.com/Finch-API/finch-api-node/commit/4b2ba24947678cdab36c702c79a25c18604c84d9))
21+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([3a19bda](https://github.com/Finch-API/finch-api-node/commit/3a19bda24353dee597be87c138d121055b15898a))
22+
* **mcp:** add line numbers to code tool errors ([04e2f21](https://github.com/Finch-API/finch-api-node/commit/04e2f21f9869e1816e617e2c4c6cccb6b4070783))
23+
* **mcp:** clarify http auth error ([73ef3b1](https://github.com/Finch-API/finch-api-node/commit/73ef3b1ad01cf381557627e88e154e1707a60133))
24+
* sync repo ([c4ee3a6](https://github.com/Finch-API/finch-api-node/commit/c4ee3a660b553588ef898bb1db4eab97f16f1255))
25+
26+
27+
### Documentation
28+
29+
* **mcp:** add a README button for one-click add to Cursor ([faf1e14](https://github.com/Finch-API/finch-api-node/commit/faf1e14963cece40f83b6f8b3720806404589e76))
30+
* **mcp:** add a README link to add server to VS Code or Claude Code ([ba208f5](https://github.com/Finch-API/finch-api-node/commit/ba208f518901b2c03749495dc37c93f2c70c63c6))
31+
332
## 6.38.0 (2025-10-27)
433

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