Skip to content

Commit 17010f6

Browse files
release: 7.0.0
1 parent 88928b6 commit 17010f6

File tree

6 files changed

+40
-5
lines changed

6 files changed

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

3+
## 7.0.0 (2025-11-19)
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 ([33ca195](https://github.com/Finch-API/finch-api-node/commit/33ca195967e2f0c417905d34e6dd98d809ce228c))
10+
* **api:** api update ([8365f1f](https://github.com/Finch-API/finch-api-node/commit/8365f1f634543f37f8b6de5f3d6d8cba59151b70))
11+
* **api:** move node to typescript generator ([fbf1def](https://github.com/Finch-API/finch-api-node/commit/fbf1defe11c6fb50715070f3e08039f85572b5a2))
12+
* **api:** update automated code reviewer selection ([3360040](https://github.com/Finch-API/finch-api-node/commit/3360040342df456ddb34a5d94c62878a05dc8d9c))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([71f8241](https://github.com/Finch-API/finch-api-node/commit/71f8241992d95c91b4c365cc59e66fb818c8ab4d))
14+
15+
16+
### Bug Fixes
17+
18+
* **mcp:** return tool execution error on jq failure ([42cbcef](https://github.com/Finch-API/finch-api-node/commit/42cbcefbc8954bbe92b9d97b7603de8f635db982))
19+
20+
21+
### Chores
22+
23+
* **internal:** codegen related update ([513ea33](https://github.com/Finch-API/finch-api-node/commit/513ea33a666aa43e2fc52ab3b9f5d2cbdaa79b8a))
24+
* **internal:** codegen related update ([d48f796](https://github.com/Finch-API/finch-api-node/commit/d48f796733d0b7cba5ae6cb366705f437ec554cd))
25+
* mcp code tool explicit error message when missing a run function ([66386af](https://github.com/Finch-API/finch-api-node/commit/66386af56f757a6b8d1513938e33f4b29838e18c))
26+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([88d032c](https://github.com/Finch-API/finch-api-node/commit/88d032cc3d31756709726539d5148c0e139f5714))
27+
* **mcp:** add line numbers to code tool errors ([2062d63](https://github.com/Finch-API/finch-api-node/commit/2062d63d488752019c243d143db7b68df5c0fdc2))
28+
* **mcp:** clarify http auth error ([08fd876](https://github.com/Finch-API/finch-api-node/commit/08fd876db7ba032e9683ff1bc7baa19063cd7ca1))
29+
* **mcp:** upgrade jq-web ([88928b6](https://github.com/Finch-API/finch-api-node/commit/88928b60114e45b1a3614e12c672d04bd9c95900))
30+
* sync repo ([ca39e21](https://github.com/Finch-API/finch-api-node/commit/ca39e21946d271e8fa92436c4fd4dd0c6d1a7ba8))
31+
32+
33+
### Documentation
34+
35+
* **mcp:** add a README button for one-click add to Cursor ([78e604c](https://github.com/Finch-API/finch-api-node/commit/78e604cd6c7ba6bf07a60242bbc9eddf7f134f8a))
36+
* **mcp:** add a README link to add server to VS Code or Claude Code ([224767c](https://github.com/Finch-API/finch-api-node/commit/224767c28191bf57f7678dcaf3968d34f1f1d9bb))
37+
338
## 6.38.0 (2025-10-27)
439

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