Skip to content

Commit 36fbf63

Browse files
release: 7.0.0
1 parent 952ddb7 commit 36fbf63

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 ([c3b4456](https://github.com/Finch-API/finch-api-node/commit/c3b44563a0b3a41c3352029785425a6f4246227d))
10+
* **api:** api update ([19df1de](https://github.com/Finch-API/finch-api-node/commit/19df1de20d4ca7ddca60a13d4c8a40d4b18532d4))
11+
* **api:** move node to typescript generator ([7bcd840](https://github.com/Finch-API/finch-api-node/commit/7bcd840b1098f708a1273faa13a6dfb0bd752ffe))
12+
* **api:** update automated code reviewer selection ([be79cef](https://github.com/Finch-API/finch-api-node/commit/be79cefcce00b0e4aaf8b9395ab08c23d57d36da))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([e1a5eeb](https://github.com/Finch-API/finch-api-node/commit/e1a5eebdf6f0f33f948c6a783557d1e061ff22d3))
14+
15+
16+
### Bug Fixes
17+
18+
* **mcp:** return tool execution error on jq failure ([013de49](https://github.com/Finch-API/finch-api-node/commit/013de499e54a488781aa74a800361c5eb92e7542))
19+
20+
21+
### Chores
22+
23+
* **internal:** codegen related update ([98c1c1b](https://github.com/Finch-API/finch-api-node/commit/98c1c1b4866514017dd23bb422acf0ec52e437fe))
24+
* **internal:** codegen related update ([daeaa80](https://github.com/Finch-API/finch-api-node/commit/daeaa8024811d5f438fe8dc7473756f8b1cf258c))
25+
* mcp code tool explicit error message when missing a run function ([3399dc3](https://github.com/Finch-API/finch-api-node/commit/3399dc3d0841875dd71cf93d85287ad202965179))
26+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([f639ece](https://github.com/Finch-API/finch-api-node/commit/f639ece3e1e89c00b9cf9519da7b2ecc04c2b9a8))
27+
* **mcp:** add line numbers to code tool errors ([9cbc169](https://github.com/Finch-API/finch-api-node/commit/9cbc16911b35143f9496797bfe4808469bcac436))
28+
* **mcp:** clarify http auth error ([7512c6b](https://github.com/Finch-API/finch-api-node/commit/7512c6b7b43a757de96b3cdb32103311ac7182a0))
29+
* **mcp:** upgrade jq-web ([952ddb7](https://github.com/Finch-API/finch-api-node/commit/952ddb705ca2222775badb7273bc70b477a15b30))
30+
* sync repo ([6774c53](https://github.com/Finch-API/finch-api-node/commit/6774c532841d96c2de6d864993cc8e9f50fa17b3))
31+
32+
33+
### Documentation
34+
35+
* **mcp:** add a README button for one-click add to Cursor ([9b46c46](https://github.com/Finch-API/finch-api-node/commit/9b46c46df63b32c9707ba51fb055ecdb7795846d))
36+
* **mcp:** add a README link to add server to VS Code or Claude Code ([b4584a0](https://github.com/Finch-API/finch-api-node/commit/b4584a09e8f9eaeab0660f981c8260c43777d14e))
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)