Skip to content

Commit fcb03d1

Browse files
release: 7.0.0
1 parent a811cbe commit fcb03d1

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-17)
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 ([1431bd5](https://github.com/Finch-API/finch-api-node/commit/1431bd5bde161bf411c0f8b87769cb156a71de3e))
10+
* **api:** api update ([78d30d2](https://github.com/Finch-API/finch-api-node/commit/78d30d231a39b071593d90652a423dcda31b0197))
11+
* **api:** move node to typescript generator ([ccb9301](https://github.com/Finch-API/finch-api-node/commit/ccb93014a071c9476a4e5af9d5e059b37ae3d909))
12+
* **api:** update automated code reviewer selection ([55ce655](https://github.com/Finch-API/finch-api-node/commit/55ce6553eb954ac67a6fa65ae9c8c50761e56c93))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([10cf5ab](https://github.com/Finch-API/finch-api-node/commit/10cf5ab76c5eb2db881dca4163bdb9ca53d4e70d))
14+
15+
16+
### Bug Fixes
17+
18+
* **mcp:** return tool execution error on jq failure ([f371c86](https://github.com/Finch-API/finch-api-node/commit/f371c86c74d832b69c86d3d6a686cc73112a7bec))
19+
20+
21+
### Chores
22+
23+
* **internal:** codegen related update ([bdd75b1](https://github.com/Finch-API/finch-api-node/commit/bdd75b1534d899c8ce65905e9c56c5d6cf7afc70))
24+
* **internal:** codegen related update ([e1addd8](https://github.com/Finch-API/finch-api-node/commit/e1addd826b50d47fc9017ded0827f2dca0e7ebf3))
25+
* mcp code tool explicit error message when missing a run function ([c038564](https://github.com/Finch-API/finch-api-node/commit/c038564232beac60ba1625c04b5ee2e249a19c9a))
26+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([77f8cb5](https://github.com/Finch-API/finch-api-node/commit/77f8cb543620718f67fd13d1895bffbbbfa1043c))
27+
* **mcp:** add line numbers to code tool errors ([91f8626](https://github.com/Finch-API/finch-api-node/commit/91f86269d06961f3d64e62a4742bb83f2c245685))
28+
* **mcp:** clarify http auth error ([1837d21](https://github.com/Finch-API/finch-api-node/commit/1837d21a1d54574420ea7c217e80ac7c09fe7f0d))
29+
* **mcp:** upgrade jq-web ([a811cbe](https://github.com/Finch-API/finch-api-node/commit/a811cbe7cd8347ca9c232199af083041a9f4fe3a))
30+
* sync repo ([1a4a1e0](https://github.com/Finch-API/finch-api-node/commit/1a4a1e0f58b35d0dec7f43c09409a7415da269f7))
31+
32+
33+
### Documentation
34+
35+
* **mcp:** add a README button for one-click add to Cursor ([87a446b](https://github.com/Finch-API/finch-api-node/commit/87a446b88170a513b83925661f81604af1dbb5fc))
36+
* **mcp:** add a README link to add server to VS Code or Claude Code ([144f7d6](https://github.com/Finch-API/finch-api-node/commit/144f7d6dad8a35ef6f3441aec31fff6d725a3150))
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)