Skip to content

Commit 3d7a4d5

Browse files
release: 7.0.0
1 parent 8b92e18 commit 3d7a4d5

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 ([2a60f74](https://github.com/Finch-API/finch-api-node/commit/2a60f74cec30dc779cbcff78c58b8035d0ff429a))
10+
* **api:** api update ([6b5def3](https://github.com/Finch-API/finch-api-node/commit/6b5def369d1dbc8564d04bace9031e08fbee3603))
11+
* **api:** move node to typescript generator ([9d23d11](https://github.com/Finch-API/finch-api-node/commit/9d23d11667fab6f229eb6611915ebbc1159dbbf7))
12+
* **api:** update automated code reviewer selection ([6d4eb2e](https://github.com/Finch-API/finch-api-node/commit/6d4eb2e686a241494ba4d4cb50c4a5346c62ec42))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([051d4a4](https://github.com/Finch-API/finch-api-node/commit/051d4a4ca82f28b691d134de264559d50c766fd7))
14+
15+
16+
### Bug Fixes
17+
18+
* **mcp:** return tool execution error on jq failure ([2dfeb5e](https://github.com/Finch-API/finch-api-node/commit/2dfeb5ef816d19b9b978d8677a4b3ad4ea94cb21))
19+
20+
21+
### Chores
22+
23+
* **internal:** codegen related update ([8caa3e0](https://github.com/Finch-API/finch-api-node/commit/8caa3e0a29c9848ad6498b6c97e6a28658116bcd))
24+
* **internal:** codegen related update ([4cb1844](https://github.com/Finch-API/finch-api-node/commit/4cb18448be7877fdc28f0f70eed954447db695ce))
25+
* mcp code tool explicit error message when missing a run function ([ff33c04](https://github.com/Finch-API/finch-api-node/commit/ff33c049099e5d3615cf260aa2d7bbcd208dbaaf))
26+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([fc2f7f6](https://github.com/Finch-API/finch-api-node/commit/fc2f7f63fa59e4c048d43ffee1f79668995c29f9))
27+
* **mcp:** add line numbers to code tool errors ([24eb0d9](https://github.com/Finch-API/finch-api-node/commit/24eb0d93fefcb047478e4b63957249910037535b))
28+
* **mcp:** clarify http auth error ([809748a](https://github.com/Finch-API/finch-api-node/commit/809748a080f6bb2e1fe0ac453f0486ee44a82c2e))
29+
* **mcp:** upgrade jq-web ([8b92e18](https://github.com/Finch-API/finch-api-node/commit/8b92e183cba8bc6a563289e24b6a0374c29d8d53))
30+
* sync repo ([d93ba71](https://github.com/Finch-API/finch-api-node/commit/d93ba710223f791b199905d700caa19de4ffb546))
31+
32+
33+
### Documentation
34+
35+
* **mcp:** add a README button for one-click add to Cursor ([278e623](https://github.com/Finch-API/finch-api-node/commit/278e623b4c31844ea5c84f90f0fc7e533d4b35b0))
36+
* **mcp:** add a README link to add server to VS Code or Claude Code ([f249694](https://github.com/Finch-API/finch-api-node/commit/f249694b5be55b6b5121929055a6d333953f7343))
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)