Skip to content

Commit 4622c6c

Browse files
release: 7.0.0
1 parent 981e31e commit 4622c6c

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-20)
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 ([9865952](https://github.com/Finch-API/finch-api-node/commit/9865952633d3afabeeb661d33a78d07ac9ff47c9))
10+
* **api:** api update ([5857a18](https://github.com/Finch-API/finch-api-node/commit/5857a18a732d20c386f6c64420a6ca2e95f71861))
11+
* **api:** move node to typescript generator ([50d8ebf](https://github.com/Finch-API/finch-api-node/commit/50d8ebf684a86212f0a8cc105f03a490a8c8b0cb))
12+
* **api:** update automated code reviewer selection ([884738e](https://github.com/Finch-API/finch-api-node/commit/884738ea4fec44c6ce2d264823604df41585866a))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([2d0b9ed](https://github.com/Finch-API/finch-api-node/commit/2d0b9ed5d633ff58f0f09ef68e63024ff169302c))
14+
15+
16+
### Bug Fixes
17+
18+
* **api:** migrate custom code to TypeScript ([51232dc](https://github.com/Finch-API/finch-api-node/commit/51232dcd3e3a16ea4b0e2a3be3bb389dad33614b))
19+
* **api:** resolve build issues ([1d3a49a](https://github.com/Finch-API/finch-api-node/commit/1d3a49a8a555cafbc0e005142116ed2bd86e960f))
20+
* **mcp:** return tool execution error on jq failure ([e65a1e7](https://github.com/Finch-API/finch-api-node/commit/e65a1e76811f210ba8ea9c965a3d27cffccd042a))
21+
* **tests:** fix tests ([981e31e](https://github.com/Finch-API/finch-api-node/commit/981e31e7842bce44644115652ab22783d2fe5246))
22+
23+
24+
### Chores
25+
26+
* **internal:** codegen related update ([3967585](https://github.com/Finch-API/finch-api-node/commit/3967585b99c0430d8fc3bc16cb89cac4dc401128))
27+
* **internal:** codegen related update ([fc0dbe6](https://github.com/Finch-API/finch-api-node/commit/fc0dbe60d95239e07908715f033ac84968cdbe0a))
28+
* mcp code tool explicit error message when missing a run function ([9d732f4](https://github.com/Finch-API/finch-api-node/commit/9d732f4d79eec49597e632f0685f95b810f8f889))
29+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([2885a5d](https://github.com/Finch-API/finch-api-node/commit/2885a5d0e29d23541693867837d5246f71707f7c))
30+
* **mcp:** add line numbers to code tool errors ([160dfde](https://github.com/Finch-API/finch-api-node/commit/160dfdedf42465ca09ed3aef46c7094c093f09b0))
31+
* **mcp:** clarify http auth error ([019a8ac](https://github.com/Finch-API/finch-api-node/commit/019a8ac3153af0231c46369c65154ce0f251e652))
32+
* **mcp:** upgrade jq-web ([be2fdb4](https://github.com/Finch-API/finch-api-node/commit/be2fdb45fd3ed7d493ed6253479f8e938ad3c115))
33+
* sync repo ([3c8d204](https://github.com/Finch-API/finch-api-node/commit/3c8d20427c7df1dc95f9ea1be126f1e8cb25f866))
34+
35+
36+
### Documentation
37+
38+
* **mcp:** add a README button for one-click add to Cursor ([fc6c037](https://github.com/Finch-API/finch-api-node/commit/fc6c037f0e7b14e5095ae0d6dab2eddcc8541959))
39+
* **mcp:** add a README link to add server to VS Code or Claude Code ([5a93e8d](https://github.com/Finch-API/finch-api-node/commit/5a93e8da7d7e3e0ee35cc3e9d4bb2459eace531e))
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)