Skip to content

Commit 48f8277

Browse files
release: 7.0.0
1 parent 001d756 commit 48f8277

File tree

6 files changed

+39
-5
lines changed

6 files changed

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

3+
## 7.0.0 (2025-11-12)
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 ([1cded29](https://github.com/Finch-API/finch-api-node/commit/1cded29432ca0ab7b58ee5095189ac3d3f9b1a9f))
10+
* **api:** api update ([eb53339](https://github.com/Finch-API/finch-api-node/commit/eb533393404f899d68319bd8258d12628d4528a6))
11+
* **api:** move node to typescript generator ([37cbe82](https://github.com/Finch-API/finch-api-node/commit/37cbe826a65f00bfedbb8fffd9a8bba3fb541bf3))
12+
* **api:** update automated code reviewer selection ([ee5d44f](https://github.com/Finch-API/finch-api-node/commit/ee5d44f0356d0341dfb93d0349df045d24cdd452))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([e22f941](https://github.com/Finch-API/finch-api-node/commit/e22f9416ebd195f3a35153d2e606e43e1886d3a9))
14+
15+
16+
### Bug Fixes
17+
18+
* **mcp:** return tool execution error on jq failure ([001d756](https://github.com/Finch-API/finch-api-node/commit/001d7567586b4493dcb50bfe0a3727fea416d192))
19+
20+
21+
### Chores
22+
23+
* **internal:** codegen related update ([5b201e9](https://github.com/Finch-API/finch-api-node/commit/5b201e90b587b336b0803a049ca299df8afdb8cc))
24+
* **internal:** codegen related update ([918ed8a](https://github.com/Finch-API/finch-api-node/commit/918ed8abac0b1afe8b82d951748204d1de067051))
25+
* mcp code tool explicit error message when missing a run function ([a3644ba](https://github.com/Finch-API/finch-api-node/commit/a3644babb54c6451d04d66eecf304111def2ed6f))
26+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([5728fe5](https://github.com/Finch-API/finch-api-node/commit/5728fe53a5bea2da272f201f3f02d274c686d0af))
27+
* **mcp:** add line numbers to code tool errors ([9ac182f](https://github.com/Finch-API/finch-api-node/commit/9ac182fd99b04557b4d58ef896a4a5cbf3d077bd))
28+
* **mcp:** clarify http auth error ([04020f3](https://github.com/Finch-API/finch-api-node/commit/04020f3d66cf5c6a28944346a40b84fe8060a353))
29+
* sync repo ([97915a0](https://github.com/Finch-API/finch-api-node/commit/97915a0e85df3f5b81a1ec06b75172789ebca779))
30+
31+
32+
### Documentation
33+
34+
* **mcp:** add a README button for one-click add to Cursor ([f17f7cf](https://github.com/Finch-API/finch-api-node/commit/f17f7cfc3b52eae53355966e7fea3b56ba52f517))
35+
* **mcp:** add a README link to add server to VS Code or Claude Code ([7fcdadb](https://github.com/Finch-API/finch-api-node/commit/7fcdadb22d13f43a145ed7531f5bfbeebc90ac90))
36+
337
## 6.38.0 (2025-10-27)
438

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