Skip to content

Commit 5516247

Browse files
release: 7.0.0
1 parent 4c87e62 commit 5516247

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 ([71a1577](https://github.com/Finch-API/finch-api-node/commit/71a15774179d4c32063ba16f1ca1b5afbce6eafe))
10+
* **api:** api update ([bdbd193](https://github.com/Finch-API/finch-api-node/commit/bdbd193d1c4777c26f7583d91e25a5e79bdc9caf))
11+
* **api:** move node to typescript generator ([75aa68a](https://github.com/Finch-API/finch-api-node/commit/75aa68acfebb170872a9ff54d0f5114acb39d837))
12+
* **api:** update automated code reviewer selection ([90ea394](https://github.com/Finch-API/finch-api-node/commit/90ea394d168676e04067ebe87acd857f253a3ec5))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([7d613a8](https://github.com/Finch-API/finch-api-node/commit/7d613a80390f8c279025969485c0f6ba8bfce705))
14+
15+
16+
### Bug Fixes
17+
18+
* **api:** migrate custom code to TypeScript ([167ac78](https://github.com/Finch-API/finch-api-node/commit/167ac78b8e2c806de868b5500e6f0e0bfb9617ec))
19+
* **api:** resolve build issues ([7217e7e](https://github.com/Finch-API/finch-api-node/commit/7217e7ee62d5e1b7377a97a3362f157eed4ac290))
20+
* **mcp:** return tool execution error on jq failure ([00479f9](https://github.com/Finch-API/finch-api-node/commit/00479f9fb39ed3a2282aae2c7d2c25f965727363))
21+
* **tests:** fix tests ([4c87e62](https://github.com/Finch-API/finch-api-node/commit/4c87e62a5a2cac46151c9289968b108f087049ff))
22+
23+
24+
### Chores
25+
26+
* **internal:** codegen related update ([f68ff50](https://github.com/Finch-API/finch-api-node/commit/f68ff50b625a938c76c1e6402400644e9f7c1a92))
27+
* **internal:** codegen related update ([e883615](https://github.com/Finch-API/finch-api-node/commit/e883615b2987deeaa0331d4bb6bfa39a46ffbffa))
28+
* mcp code tool explicit error message when missing a run function ([30a92ca](https://github.com/Finch-API/finch-api-node/commit/30a92ca5f680113beb02400bdca361cde4716834))
29+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([c3ea5bd](https://github.com/Finch-API/finch-api-node/commit/c3ea5bdb6e2f53252e2c92ae12a2bed00a0e128e))
30+
* **mcp:** add line numbers to code tool errors ([c2b39b7](https://github.com/Finch-API/finch-api-node/commit/c2b39b7223b2541271bc6eb12c142503ef6323b4))
31+
* **mcp:** clarify http auth error ([ccde431](https://github.com/Finch-API/finch-api-node/commit/ccde4315db28fa49b09092b8c02923c602917bc7))
32+
* **mcp:** upgrade jq-web ([fc0bd9d](https://github.com/Finch-API/finch-api-node/commit/fc0bd9dc3eac81d69b4f3a6afe7178d5b317f3d8))
33+
* sync repo ([cb0992c](https://github.com/Finch-API/finch-api-node/commit/cb0992c2557b549f75e30ba5b6f6f4e524509a51))
34+
35+
36+
### Documentation
37+
38+
* **mcp:** add a README button for one-click add to Cursor ([79ea6de](https://github.com/Finch-API/finch-api-node/commit/79ea6de6f8287f2f9a57954577cc735e2151c7aa))
39+
* **mcp:** add a README link to add server to VS Code or Claude Code ([68f7739](https://github.com/Finch-API/finch-api-node/commit/68f7739b4d5d3caf6d46e3282ba40c3db6677428))
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)