Skip to content

Commit 7eb302a

Browse files
release: 7.0.0
1 parent 8b47c89 commit 7eb302a

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 ([d788e4b](https://github.com/Finch-API/finch-api-node/commit/d788e4bcae49da45452019c0dd982f0d4ef3c20e))
10+
* **api:** api update ([e413289](https://github.com/Finch-API/finch-api-node/commit/e4132898fb0f1ab3ab464692eb14ce35d6a4d197))
11+
* **api:** move node to typescript generator ([893c0ec](https://github.com/Finch-API/finch-api-node/commit/893c0ec449227df48b50167eb830c6c83fd1b3dc))
12+
* **api:** update automated code reviewer selection ([8bff0a7](https://github.com/Finch-API/finch-api-node/commit/8bff0a7127fb4fd53fffaffe6e77d9790734fa62))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([54fb2c1](https://github.com/Finch-API/finch-api-node/commit/54fb2c15883c7fddb39c5706648b26bb27b8d238))
14+
15+
16+
### Bug Fixes
17+
18+
* **mcp:** return tool execution error on jq failure ([8b47c89](https://github.com/Finch-API/finch-api-node/commit/8b47c895efcc5447fedd5f51a478d0b9332ce32c))
19+
20+
21+
### Chores
22+
23+
* **internal:** codegen related update ([c31828b](https://github.com/Finch-API/finch-api-node/commit/c31828b81ece9c275d54158c1678b3c3fb117c9f))
24+
* **internal:** codegen related update ([d8de47b](https://github.com/Finch-API/finch-api-node/commit/d8de47b469915a3a20c667a891579dfc8eb9e706))
25+
* mcp code tool explicit error message when missing a run function ([2388dfe](https://github.com/Finch-API/finch-api-node/commit/2388dfe1932edf4e983a1847121161c0c0043205))
26+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([40d24c5](https://github.com/Finch-API/finch-api-node/commit/40d24c5f7dc3157c90e82af5b9e4bbb87f433419))
27+
* **mcp:** add line numbers to code tool errors ([fdb6f21](https://github.com/Finch-API/finch-api-node/commit/fdb6f21d5b67a60dce986466a0d0fe01e7fa32a2))
28+
* **mcp:** clarify http auth error ([c5ee98c](https://github.com/Finch-API/finch-api-node/commit/c5ee98ceb95b5574822bcadade8babe34aa3b2ae))
29+
* sync repo ([67dedf5](https://github.com/Finch-API/finch-api-node/commit/67dedf513dc15c70562f5de5688456fe28d5c6ca))
30+
31+
32+
### Documentation
33+
34+
* **mcp:** add a README button for one-click add to Cursor ([b184b0c](https://github.com/Finch-API/finch-api-node/commit/b184b0cf07b664f2afe6dae07922dd585600de0f))
35+
* **mcp:** add a README link to add server to VS Code or Claude Code ([a89f3df](https://github.com/Finch-API/finch-api-node/commit/a89f3df46bfa8165faf89c1701ef608bd77d4978))
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)