Skip to content

Commit 4c131b1

Browse files
release: 7.0.0
1 parent 69bf513 commit 4c131b1

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-13)
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 ([370800c](https://github.com/Finch-API/finch-api-node/commit/370800cc76a98856e4a90b738addc373a49dbd5b))
10+
* **api:** api update ([0107de0](https://github.com/Finch-API/finch-api-node/commit/0107de05f5a3d6ecfe7fc26cef855aa059a85feb))
11+
* **api:** move node to typescript generator ([7fae9c8](https://github.com/Finch-API/finch-api-node/commit/7fae9c83e92653998edaf741cdb09544a02664b1))
12+
* **api:** update automated code reviewer selection ([556bb26](https://github.com/Finch-API/finch-api-node/commit/556bb26071852b33df25e71a64d9ef9724438005))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([b7bf91e](https://github.com/Finch-API/finch-api-node/commit/b7bf91eabf63fe5a0ae2ff0ad50c63127dfaff5f))
14+
15+
16+
### Bug Fixes
17+
18+
* **mcp:** return tool execution error on jq failure ([64cc4bf](https://github.com/Finch-API/finch-api-node/commit/64cc4bf503bff9147648f1601fd66f88bfa8e8a7))
19+
20+
21+
### Chores
22+
23+
* **internal:** codegen related update ([502009c](https://github.com/Finch-API/finch-api-node/commit/502009cfd9061587f387e4b9cd76874a3884eafb))
24+
* **internal:** codegen related update ([a7014ab](https://github.com/Finch-API/finch-api-node/commit/a7014ab35853604257e549ae5527ca79d9c73d85))
25+
* mcp code tool explicit error message when missing a run function ([d71783a](https://github.com/Finch-API/finch-api-node/commit/d71783a33a5c246bf1a4c8b11fdc607c95fbd389))
26+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([7c9508e](https://github.com/Finch-API/finch-api-node/commit/7c9508e08e7505ba5b9b2b5e029dc0bd533d6de8))
27+
* **mcp:** add line numbers to code tool errors ([c261334](https://github.com/Finch-API/finch-api-node/commit/c26133408d9167533d922adcd7403b45612605fb))
28+
* **mcp:** clarify http auth error ([a2b998d](https://github.com/Finch-API/finch-api-node/commit/a2b998d36fdc089f064d6bf1d14ac3a818d6a050))
29+
* **mcp:** upgrade jq-web ([69bf513](https://github.com/Finch-API/finch-api-node/commit/69bf5138a1513731ded49054510f11f16a210f2f))
30+
* sync repo ([cd65e48](https://github.com/Finch-API/finch-api-node/commit/cd65e48fffc79a25e1a674171a6ee01dd9a5c5b2))
31+
32+
33+
### Documentation
34+
35+
* **mcp:** add a README button for one-click add to Cursor ([648ac68](https://github.com/Finch-API/finch-api-node/commit/648ac68db3167a03b16c7e54b00fd30505f97a45))
36+
* **mcp:** add a README link to add server to VS Code or Claude Code ([d45d3de](https://github.com/Finch-API/finch-api-node/commit/d45d3de1a7d79358502e20a536c002d70449a284))
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)