Skip to content

Commit a829db0

Browse files
release: 7.0.0
1 parent e34f052 commit a829db0

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 ([d9f620d](https://github.com/Finch-API/finch-api-node/commit/d9f620da4ff8e4627e4308a6af6c06102ea2d8ae))
10+
* **api:** api update ([2f380ce](https://github.com/Finch-API/finch-api-node/commit/2f380ce933fc9a8781f98388fdc5e57414741f95))
11+
* **api:** move node to typescript generator ([7667d16](https://github.com/Finch-API/finch-api-node/commit/7667d167d226f92dc92d5812b8d197dd08de6ac8))
12+
* **api:** update automated code reviewer selection ([8fbef63](https://github.com/Finch-API/finch-api-node/commit/8fbef6372eace778dfbbaf169ff9369f20078652))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([ba55c31](https://github.com/Finch-API/finch-api-node/commit/ba55c317bfffaa8f760f58f338a1e660e10e549d))
14+
15+
16+
### Bug Fixes
17+
18+
* **mcp:** return tool execution error on jq failure ([e5667a1](https://github.com/Finch-API/finch-api-node/commit/e5667a1bb1caf457100b5e29da71035f7fa844df))
19+
20+
21+
### Chores
22+
23+
* **internal:** codegen related update ([06ca5ee](https://github.com/Finch-API/finch-api-node/commit/06ca5ee034701ec7f04dcf342041b2934c21bae4))
24+
* **internal:** codegen related update ([49805df](https://github.com/Finch-API/finch-api-node/commit/49805df9f543d3880e2e063e802e8bc0f76b22ef))
25+
* mcp code tool explicit error message when missing a run function ([5094007](https://github.com/Finch-API/finch-api-node/commit/5094007963607d24027a70fe808b3a954e51b7c4))
26+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([927a262](https://github.com/Finch-API/finch-api-node/commit/927a262736d1e5a504bd79b86d1572a18b391888))
27+
* **mcp:** add line numbers to code tool errors ([40f4c0f](https://github.com/Finch-API/finch-api-node/commit/40f4c0f7bf8efd800f0813ba36da973d471b6f0e))
28+
* **mcp:** clarify http auth error ([2dc152b](https://github.com/Finch-API/finch-api-node/commit/2dc152b07424850f30e13318175f9657d22a320f))
29+
* **mcp:** upgrade jq-web ([e34f052](https://github.com/Finch-API/finch-api-node/commit/e34f0526ff535ec0e9c2d3a5cc96dad0a8b7c1a1))
30+
* sync repo ([6b9c5c6](https://github.com/Finch-API/finch-api-node/commit/6b9c5c6cad03a27d4b6a5d8b556c02aaec3e0c90))
31+
32+
33+
### Documentation
34+
35+
* **mcp:** add a README button for one-click add to Cursor ([1f92d7f](https://github.com/Finch-API/finch-api-node/commit/1f92d7f6afa42748ec35359981a763dc978db57e))
36+
* **mcp:** add a README link to add server to VS Code or Claude Code ([84b39e8](https://github.com/Finch-API/finch-api-node/commit/84b39e80b0928dd916ac35cc775e7cc2dfe2fe3a))
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)