Skip to content

Commit fd98006

Browse files
release: 7.0.0
1 parent 4511fce commit fd98006

File tree

6 files changed

+43
-5
lines changed

6 files changed

+43
-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: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,43 @@
11
# Changelog
22

3+
## 7.0.0 (2025-11-21)
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 ([9586782](https://github.com/Finch-API/finch-api-node/commit/9586782c669dfff092f4185bb7f948a8db8927b5))
10+
* **api:** api update ([20b0719](https://github.com/Finch-API/finch-api-node/commit/20b07194fe132e3ef52ed7c1f8b7549399f85c26))
11+
* **api:** move node to typescript generator ([b8c2e68](https://github.com/Finch-API/finch-api-node/commit/b8c2e68e68c4fbb992f6c7801123fec0ed3936b1))
12+
* **api:** update automated code reviewer selection ([6001efd](https://github.com/Finch-API/finch-api-node/commit/6001efda6e90f5f7ee41ef10c8b2b0368b747592))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([544f403](https://github.com/Finch-API/finch-api-node/commit/544f403fd8671e6303885cf15a438575339801b3))
14+
15+
16+
### Bug Fixes
17+
18+
* **api:** migrate custom code to TypeScript ([c5c7cd1](https://github.com/Finch-API/finch-api-node/commit/c5c7cd1d890c0762719c43ac79f7f0044843e4df))
19+
* **api:** resolve build issues ([be1b46c](https://github.com/Finch-API/finch-api-node/commit/be1b46c79e385ecb20e88ed07c1bcef492c11911))
20+
* **mcp:** return tool execution error on jq failure ([c148f2d](https://github.com/Finch-API/finch-api-node/commit/c148f2d6f012f63abfa19320dcb83e651c17cfe3))
21+
* **tests:** fix tests ([4511fce](https://github.com/Finch-API/finch-api-node/commit/4511fce37e09613a41aa86e80903db03dcd869ba))
22+
23+
24+
### Chores
25+
26+
* **internal:** codegen related update ([9ff1451](https://github.com/Finch-API/finch-api-node/commit/9ff1451971754c7c24a19f09a7e1a3add785d137))
27+
* **internal:** codegen related update ([5aed676](https://github.com/Finch-API/finch-api-node/commit/5aed6769b4f4f535269fd57c0f997a51a1388826))
28+
* mcp code tool explicit error message when missing a run function ([f185a47](https://github.com/Finch-API/finch-api-node/commit/f185a47a0ab394313d610a5c3985ac86ac65e0c8))
29+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([d644463](https://github.com/Finch-API/finch-api-node/commit/d644463d6467c117ec04a9578482e72233b4bb31))
30+
* **mcp:** add line numbers to code tool errors ([a5ca351](https://github.com/Finch-API/finch-api-node/commit/a5ca3515fc3123d7d16fae77ae7511bc4152396d))
31+
* **mcp:** clarify http auth error ([09cf1ea](https://github.com/Finch-API/finch-api-node/commit/09cf1ea297ffec0830fdcea9bdcd93ebe8724536))
32+
* **mcp:** upgrade jq-web ([a7f1b8f](https://github.com/Finch-API/finch-api-node/commit/a7f1b8fade133bdc8bf2aebe5d8b6fe5f220a8c8))
33+
* sync repo ([55851c0](https://github.com/Finch-API/finch-api-node/commit/55851c0cee7670fb27438309ed69783fcf6dd1f6))
34+
35+
36+
### Documentation
37+
38+
* **mcp:** add a README button for one-click add to Cursor ([dc3686c](https://github.com/Finch-API/finch-api-node/commit/dc3686c3ce59ab958c8bec2a35cd3e7f4a82f81e))
39+
* **mcp:** add a README link to add server to VS Code or Claude Code ([3825810](https://github.com/Finch-API/finch-api-node/commit/3825810074becd43cbdbb27d78753032497949a9))
40+
341
## 6.38.0 (2025-10-27)
442

543
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)