Skip to content

Commit 9944e44

Browse files
release: 7.0.0
1 parent c58d02a commit 9944e44

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-19)
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 ([6ebdae1](https://github.com/Finch-API/finch-api-node/commit/6ebdae1b6059687ae3411708ede62cebf19953f7))
10+
* **api:** api update ([c93726d](https://github.com/Finch-API/finch-api-node/commit/c93726d2ef3a2ba23ac402f601abcd887c985365))
11+
* **api:** move node to typescript generator ([bf0f50c](https://github.com/Finch-API/finch-api-node/commit/bf0f50c4d01f5981068ac53c905cf5f3e3630780))
12+
* **api:** update automated code reviewer selection ([0870d4d](https://github.com/Finch-API/finch-api-node/commit/0870d4dd4aa3f6f675a9ad4acfcee42b6dc4612a))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([87b56a3](https://github.com/Finch-API/finch-api-node/commit/87b56a372830469b154d778b59972da54840b32e))
14+
15+
16+
### Bug Fixes
17+
18+
* **mcp:** return tool execution error on jq failure ([3d0fbb0](https://github.com/Finch-API/finch-api-node/commit/3d0fbb0ef1ba5f206d76ee9469d1477b2d1ae28d))
19+
20+
21+
### Chores
22+
23+
* **internal:** codegen related update ([914b12e](https://github.com/Finch-API/finch-api-node/commit/914b12e7e4797812d37e6550bb0e25ce5f5c9b0d))
24+
* **internal:** codegen related update ([9d33af6](https://github.com/Finch-API/finch-api-node/commit/9d33af6c068d76213ae3aea78f760c7d67c26f0c))
25+
* mcp code tool explicit error message when missing a run function ([e4a2ecf](https://github.com/Finch-API/finch-api-node/commit/e4a2ecf26a0a0d5581ff819671ca777e4bfd3349))
26+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([5a6134f](https://github.com/Finch-API/finch-api-node/commit/5a6134f91ffd52ef5be4cef47aa9c5d8b14beb31))
27+
* **mcp:** add line numbers to code tool errors ([cd093d8](https://github.com/Finch-API/finch-api-node/commit/cd093d8ad91e4cf46359ee489db00fdcfbd40c1c))
28+
* **mcp:** clarify http auth error ([67a5a13](https://github.com/Finch-API/finch-api-node/commit/67a5a13d2917d62b8a6ccccd7f02135a433fbe0f))
29+
* **mcp:** upgrade jq-web ([c58d02a](https://github.com/Finch-API/finch-api-node/commit/c58d02aa87da783356ff85b7be4912f65ad8c70f))
30+
* sync repo ([ca2bd5e](https://github.com/Finch-API/finch-api-node/commit/ca2bd5e1a0dabd182b9a8014f744eb23fa6f499c))
31+
32+
33+
### Documentation
34+
35+
* **mcp:** add a README button for one-click add to Cursor ([3275cc3](https://github.com/Finch-API/finch-api-node/commit/3275cc3a3e510bdc8bc9ab0ccc97c4fc52e29270))
36+
* **mcp:** add a README link to add server to VS Code or Claude Code ([1f77182](https://github.com/Finch-API/finch-api-node/commit/1f77182017b9fe8d553e4097f46d7c2801cef1bf))
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)