Skip to content

Commit 86283d7

Browse files
release: 7.0.0
1 parent 0714de9 commit 86283d7

File tree

6 files changed

+34
-5
lines changed

6 files changed

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

3+
## 7.0.0 (2025-11-12)
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 ([b077922](https://github.com/Finch-API/finch-api-node/commit/b077922aa7c03a5256b5d5700c7a86d5a0f9092f))
10+
* **api:** api update ([2a2cadb](https://github.com/Finch-API/finch-api-node/commit/2a2cadbb2ba704a5b96ced46653b081c351491d1))
11+
* **api:** move node to typescript generator ([165ba37](https://github.com/Finch-API/finch-api-node/commit/165ba3703da5a175b21bb02d0ad488315cbbf3c2))
12+
* **api:** update automated code reviewer selection ([d868072](https://github.com/Finch-API/finch-api-node/commit/d868072669449334a46a19225c57dad1e3fbc65d))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([dc3f882](https://github.com/Finch-API/finch-api-node/commit/dc3f882c0ad47b0ed428455b1f6078b77f6b068c))
14+
15+
16+
### Chores
17+
18+
* **internal:** codegen related update ([57d206b](https://github.com/Finch-API/finch-api-node/commit/57d206b6d14498a1be8beae6d986f0503cc50c34))
19+
* **internal:** codegen related update ([d366cc5](https://github.com/Finch-API/finch-api-node/commit/d366cc5455801ad7541f2d84a6e18d65f425af7c))
20+
* mcp code tool explicit error message when missing a run function ([b9ee2f3](https://github.com/Finch-API/finch-api-node/commit/b9ee2f397448047211a412a458cab845a04e5066))
21+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([3d45282](https://github.com/Finch-API/finch-api-node/commit/3d45282f25cae9c17ff477bd181710ee1e8f3e57))
22+
* **mcp:** add line numbers to code tool errors ([3dfe941](https://github.com/Finch-API/finch-api-node/commit/3dfe941f0e972e68c79fd12dfebd47038997b5bf))
23+
* **mcp:** clarify http auth error ([0714de9](https://github.com/Finch-API/finch-api-node/commit/0714de9acd784ccd288629a132a6214fd0af5435))
24+
* sync repo ([3c4d730](https://github.com/Finch-API/finch-api-node/commit/3c4d73038399d128bb2285ce5612db092ebcbcd4))
25+
26+
27+
### Documentation
28+
29+
* **mcp:** add a README button for one-click add to Cursor ([e4b6119](https://github.com/Finch-API/finch-api-node/commit/e4b611989578626d9671ad0716cd3708dd038efa))
30+
* **mcp:** add a README link to add server to VS Code or Claude Code ([8447e8f](https://github.com/Finch-API/finch-api-node/commit/8447e8fe300f5f4fb4df77af5046a3b414c19aed))
31+
332
## 6.38.0 (2025-10-27)
433

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