Skip to content

Commit 19383a3

Browse files
release: 7.0.0
1 parent 929a9e3 commit 19383a3

6 files changed

Lines changed: 39 additions & 5 deletions

File tree

.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 ([54a1749](https://github.com/Finch-API/finch-api-node/commit/54a1749a67e9d47e67b093931350f5b2c6929fde))
10+
* **api:** api update ([1c57f37](https://github.com/Finch-API/finch-api-node/commit/1c57f371968cf54dddf76d5c64440cd566b478b0))
11+
* **api:** move node to typescript generator ([191cbfc](https://github.com/Finch-API/finch-api-node/commit/191cbfc1b7004381346d9327f29bdf806ff7801c))
12+
* **api:** update automated code reviewer selection ([757e868](https://github.com/Finch-API/finch-api-node/commit/757e868e16a9d97c32572b94e757f0b177eb2504))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([aea11d9](https://github.com/Finch-API/finch-api-node/commit/aea11d98b630c734a34bd803f27938adc93aedba))
14+
15+
16+
### Bug Fixes
17+
18+
* **mcp:** return tool execution error on jq failure ([929a9e3](https://github.com/Finch-API/finch-api-node/commit/929a9e35ad7a0590b907be678cbe5f169195d1c7))
19+
20+
21+
### Chores
22+
23+
* **internal:** codegen related update ([f557f23](https://github.com/Finch-API/finch-api-node/commit/f557f23322bbe41fc5cefeb9c825fea4160c2dd1))
24+
* **internal:** codegen related update ([8ba73dc](https://github.com/Finch-API/finch-api-node/commit/8ba73dc76a878c9f5b7f9f176828b204584ac582))
25+
* mcp code tool explicit error message when missing a run function ([1248cd5](https://github.com/Finch-API/finch-api-node/commit/1248cd50b0b72846afaba4f8280d8f4e69a2f211))
26+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([605c4bc](https://github.com/Finch-API/finch-api-node/commit/605c4bc1635f5595e69ac17874c30efe87daedde))
27+
* **mcp:** add line numbers to code tool errors ([d672f2e](https://github.com/Finch-API/finch-api-node/commit/d672f2e54374948a4e39bf9a19c72f9bfbf46f3d))
28+
* **mcp:** clarify http auth error ([286fa29](https://github.com/Finch-API/finch-api-node/commit/286fa29d5204c24abcdb1c11cbf0c101ccbb2ffd))
29+
* sync repo ([f2031b0](https://github.com/Finch-API/finch-api-node/commit/f2031b056e78ea27780668963c4ebdaa5e884aeb))
30+
31+
32+
### Documentation
33+
34+
* **mcp:** add a README button for one-click add to Cursor ([66b3725](https://github.com/Finch-API/finch-api-node/commit/66b37250a4dc8daa0b17db9c65fd0cddba6f0c67))
35+
* **mcp:** add a README link to add server to VS Code or Claude Code ([4ff648d](https://github.com/Finch-API/finch-api-node/commit/4ff648dac521dff372674a7f8923bc679a3718c5))
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)