Skip to content

Commit 4be28b4

Browse files
release: 7.0.0
1 parent 90f437f commit 4be28b4

File tree

6 files changed

+34
-5
lines changed

6 files changed

+34
-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: 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-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 ([f0ca197](https://github.com/Finch-API/finch-api-node/commit/f0ca19751842995651dc6793953612f48f004666))
10+
* **api:** api update ([d0bd35c](https://github.com/Finch-API/finch-api-node/commit/d0bd35cac08b029baedadbbd742ba4d834727cdd))
11+
* **api:** move node to typescript generator ([63f0adf](https://github.com/Finch-API/finch-api-node/commit/63f0adfc4db3c1cd34ab35c346de973cb6e1bddd))
12+
* **api:** update automated code reviewer selection ([54f0b3e](https://github.com/Finch-API/finch-api-node/commit/54f0b3efc40e3dad8edf105ed357b8c86e060d0e))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([638dd82](https://github.com/Finch-API/finch-api-node/commit/638dd82573fc462f37a3913daaaa928ab076f8f8))
14+
15+
16+
### Chores
17+
18+
* **internal:** codegen related update ([a98f1f9](https://github.com/Finch-API/finch-api-node/commit/a98f1f9042e2e4e76cc5857c917cc644c2a867e2))
19+
* **internal:** codegen related update ([8954443](https://github.com/Finch-API/finch-api-node/commit/89544432e08052836b70c04ade6f88c9e38511a8))
20+
* mcp code tool explicit error message when missing a run function ([c7eafd4](https://github.com/Finch-API/finch-api-node/commit/c7eafd498b544586a9b3ae116364e5143e530a5d))
21+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([5c40d2b](https://github.com/Finch-API/finch-api-node/commit/5c40d2b949e3ad8959b8c1020c576efe35ca1747))
22+
* **mcp:** add line numbers to code tool errors ([adfc9f4](https://github.com/Finch-API/finch-api-node/commit/adfc9f4e6d46e4e6489365993efc71d1cd0295c7))
23+
* **mcp:** clarify http auth error ([90f437f](https://github.com/Finch-API/finch-api-node/commit/90f437f4efa7302610097a68b37bf3f71a9180fd))
24+
* sync repo ([c144f98](https://github.com/Finch-API/finch-api-node/commit/c144f98d6b627c0d7056d3b07c1dde26482f9dd2))
25+
26+
27+
### Documentation
28+
29+
* **mcp:** add a README button for one-click add to Cursor ([97bd4df](https://github.com/Finch-API/finch-api-node/commit/97bd4dfc0d47f20ad6e5d622251998a807246e26))
30+
* **mcp:** add a README link to add server to VS Code or Claude Code ([792b181](https://github.com/Finch-API/finch-api-node/commit/792b1811c4b180542dd76d381532e19de7ad385e))
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)