Skip to content

Commit a9eec13

Browse files
release: 7.0.0
1 parent 3fa0d27 commit a9eec13

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-13)
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 ([fde95ea](https://github.com/Finch-API/finch-api-node/commit/fde95ea5d53e2b2581a60294c0e74d43a4ba4561))
10+
* **api:** api update ([47869f0](https://github.com/Finch-API/finch-api-node/commit/47869f0704bc76ba000aa74b3da8c0c74efbf11d))
11+
* **api:** move node to typescript generator ([72934b5](https://github.com/Finch-API/finch-api-node/commit/72934b526ea6facfc3859cdf7ba5cfe8ccea10ad))
12+
* **api:** update automated code reviewer selection ([1c31316](https://github.com/Finch-API/finch-api-node/commit/1c313163bab1b5cb8ba1f6633b00a6ace3197e23))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([6a3e769](https://github.com/Finch-API/finch-api-node/commit/6a3e7690472b684b674e8adc237cbb9137d8170d))
14+
15+
16+
### Bug Fixes
17+
18+
* **mcp:** return tool execution error on jq failure ([fc060c1](https://github.com/Finch-API/finch-api-node/commit/fc060c11169be9ff53e7a1e0146accadc8ba1d00))
19+
20+
21+
### Chores
22+
23+
* **internal:** codegen related update ([2e7dcab](https://github.com/Finch-API/finch-api-node/commit/2e7dcab9c8842e203a74ed15f52d2ef34c73d24e))
24+
* **internal:** codegen related update ([ea1c248](https://github.com/Finch-API/finch-api-node/commit/ea1c2488660d9574a69daa00cc9d8d0b3f3ad60a))
25+
* mcp code tool explicit error message when missing a run function ([4692def](https://github.com/Finch-API/finch-api-node/commit/4692def21a9eebc426ea4eec65646afc7c1c29fb))
26+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([61be783](https://github.com/Finch-API/finch-api-node/commit/61be783d83ee0dd9bcb6dc7d647bbc78242d6cd7))
27+
* **mcp:** add line numbers to code tool errors ([023bc83](https://github.com/Finch-API/finch-api-node/commit/023bc83d0bb13afd42ee36392dbd05064f50912a))
28+
* **mcp:** clarify http auth error ([ecee6c2](https://github.com/Finch-API/finch-api-node/commit/ecee6c2d4284efa83de9dd775ed475f8319437cc))
29+
* **mcp:** upgrade jq-web ([3fa0d27](https://github.com/Finch-API/finch-api-node/commit/3fa0d2708333a0d3a532f3031e99bcd21a939e0c))
30+
* sync repo ([ee8ff5f](https://github.com/Finch-API/finch-api-node/commit/ee8ff5f868cc33bbf83f6c310fedad6a43ea1f84))
31+
32+
33+
### Documentation
34+
35+
* **mcp:** add a README button for one-click add to Cursor ([e7ff3dc](https://github.com/Finch-API/finch-api-node/commit/e7ff3dcbf5264e2327c973b0cb1af8c6c57ad992))
36+
* **mcp:** add a README link to add server to VS Code or Claude Code ([978912f](https://github.com/Finch-API/finch-api-node/commit/978912f2dd6ceb0b32e703a1ec8d2f3c161cc983))
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)