Skip to content

Commit 609d9e2

Browse files
release: 7.0.0
1 parent 16402d0 commit 609d9e2

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-18)
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 ([acc69bc](https://github.com/Finch-API/finch-api-node/commit/acc69bc7dc6ca9de333923fea9f084007c995ede))
10+
* **api:** api update ([2ed5ff8](https://github.com/Finch-API/finch-api-node/commit/2ed5ff8e3e4e06ad27525b7d7e9ba4cfbfc79fb9))
11+
* **api:** move node to typescript generator ([821d859](https://github.com/Finch-API/finch-api-node/commit/821d859fb88ed29d9bee7a27fc1296c786c992bc))
12+
* **api:** update automated code reviewer selection ([ea98f64](https://github.com/Finch-API/finch-api-node/commit/ea98f6458748810c00ddf90e1b25ec827b795891))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([a5f709e](https://github.com/Finch-API/finch-api-node/commit/a5f709e552d5efb4590fc8ad5176d44e9013c277))
14+
15+
16+
### Bug Fixes
17+
18+
* **mcp:** return tool execution error on jq failure ([0bc4718](https://github.com/Finch-API/finch-api-node/commit/0bc47189528af51ef828a571190b69272f1e66ef))
19+
20+
21+
### Chores
22+
23+
* **internal:** codegen related update ([054cea8](https://github.com/Finch-API/finch-api-node/commit/054cea8c1d9bd429167a7d408f78bdd570711267))
24+
* **internal:** codegen related update ([9a17ca8](https://github.com/Finch-API/finch-api-node/commit/9a17ca82ff4c27e98d5e896f68ec5d8aef8db8bb))
25+
* mcp code tool explicit error message when missing a run function ([a985a7f](https://github.com/Finch-API/finch-api-node/commit/a985a7f04260f4f1a27d317ca6aeb293b7ad74b6))
26+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([119e3bc](https://github.com/Finch-API/finch-api-node/commit/119e3bca84f3bfe81375bcef4d23b4555a99275e))
27+
* **mcp:** add line numbers to code tool errors ([feba303](https://github.com/Finch-API/finch-api-node/commit/feba303a6b0de0d849a30024c289a2eb157e575b))
28+
* **mcp:** clarify http auth error ([4656c43](https://github.com/Finch-API/finch-api-node/commit/4656c43e0e6ca246f11211b88e5a4031a1edf5d9))
29+
* **mcp:** upgrade jq-web ([16402d0](https://github.com/Finch-API/finch-api-node/commit/16402d015775fa843a72deac1bd5a975e2dfd46d))
30+
* sync repo ([f4579d5](https://github.com/Finch-API/finch-api-node/commit/f4579d5595e8f374e2660a6c1b40dc3a541f52b9))
31+
32+
33+
### Documentation
34+
35+
* **mcp:** add a README button for one-click add to Cursor ([a46aea8](https://github.com/Finch-API/finch-api-node/commit/a46aea89d537046c83ff91b350ff155097877fde))
36+
* **mcp:** add a README link to add server to VS Code or Claude Code ([b553394](https://github.com/Finch-API/finch-api-node/commit/b5533941b358e8d12172e7725e2d28984436433b))
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)