Skip to content

Commit dadb44c

Browse files
release: 7.0.0
1 parent a42c231 commit dadb44c

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 ([046b8ae](https://github.com/Finch-API/finch-api-node/commit/046b8ae955eb7873cf55423ab7add919ddb64711))
10+
* **api:** api update ([d4cf84d](https://github.com/Finch-API/finch-api-node/commit/d4cf84d1c9ebaf8ce0e948cf8b3ed791342b58e0))
11+
* **api:** move node to typescript generator ([58455f3](https://github.com/Finch-API/finch-api-node/commit/58455f3e7042c25898e7d34a8f8dcbb2f903112c))
12+
* **api:** update automated code reviewer selection ([88b04eb](https://github.com/Finch-API/finch-api-node/commit/88b04eba6d5d3c46411ea42a544fdb8034b43ff9))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([ddd949c](https://github.com/Finch-API/finch-api-node/commit/ddd949c1b64b869853a103af0c8256ace1d4e159))
14+
15+
16+
### Bug Fixes
17+
18+
* **mcp:** return tool execution error on jq failure ([fb3dd6a](https://github.com/Finch-API/finch-api-node/commit/fb3dd6a9f60f116d6120b47734c3b13ad5a703e3))
19+
20+
21+
### Chores
22+
23+
* **internal:** codegen related update ([f436e54](https://github.com/Finch-API/finch-api-node/commit/f436e54a735485a786af861203c731074b856dd8))
24+
* **internal:** codegen related update ([9f0349e](https://github.com/Finch-API/finch-api-node/commit/9f0349e600e05a04667c1c809ecc48ff63a9e198))
25+
* mcp code tool explicit error message when missing a run function ([a7f1207](https://github.com/Finch-API/finch-api-node/commit/a7f12072919e086bcaf19f3deaee5e4241d8aa46))
26+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([ba46b80](https://github.com/Finch-API/finch-api-node/commit/ba46b80d7f68d7ee659c5d1c705d5294a019c441))
27+
* **mcp:** add line numbers to code tool errors ([acdba04](https://github.com/Finch-API/finch-api-node/commit/acdba04a11a147faba156c5417eb33a744cf8a8d))
28+
* **mcp:** clarify http auth error ([c13d03a](https://github.com/Finch-API/finch-api-node/commit/c13d03a42082b16c9195eefe7c93cc90e542a32d))
29+
* **mcp:** upgrade jq-web ([a42c231](https://github.com/Finch-API/finch-api-node/commit/a42c2311f42c61e2600880374af87b72d452a8d3))
30+
* sync repo ([2459d6d](https://github.com/Finch-API/finch-api-node/commit/2459d6dee33f2195c1586dda9538f27784bacd5d))
31+
32+
33+
### Documentation
34+
35+
* **mcp:** add a README button for one-click add to Cursor ([f34ce8b](https://github.com/Finch-API/finch-api-node/commit/f34ce8b0c070183cf7ee469c511cb1a61951b71a))
36+
* **mcp:** add a README link to add server to VS Code or Claude Code ([1c0f219](https://github.com/Finch-API/finch-api-node/commit/1c0f219bdb66fa78231bc2513071ff3d236daeea))
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)