Skip to content

Commit d9a18d8

Browse files
release: 7.0.0
1 parent 077f4fe commit d9a18d8

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 ([ab8a290](https://github.com/Finch-API/finch-api-node/commit/ab8a290f84659a70a8e64e3799e7687aaeba9cc9))
10+
* **api:** api update ([f3404fc](https://github.com/Finch-API/finch-api-node/commit/f3404fce65ffcb73eb78248c89a7c27f846334f3))
11+
* **api:** move node to typescript generator ([e37d894](https://github.com/Finch-API/finch-api-node/commit/e37d894881c6da30fd110c44ab926cfe3dce39ae))
12+
* **api:** update automated code reviewer selection ([c59e5f8](https://github.com/Finch-API/finch-api-node/commit/c59e5f86dda0c5915f0344e4510c084e6d67718e))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([31c283d](https://github.com/Finch-API/finch-api-node/commit/31c283d5e64b8a0caed55d689a09174860bb13e0))
14+
15+
16+
### Chores
17+
18+
* **internal:** codegen related update ([cb8e099](https://github.com/Finch-API/finch-api-node/commit/cb8e0990f2776ea9c1447c087ef376bb0620823f))
19+
* **internal:** codegen related update ([abd9719](https://github.com/Finch-API/finch-api-node/commit/abd97198eb24e4f3c956ff24c8b5eb992baae55d))
20+
* mcp code tool explicit error message when missing a run function ([b209d46](https://github.com/Finch-API/finch-api-node/commit/b209d46aa8b4f0473714cf3fd5f2b40213d50ad0))
21+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([25fd252](https://github.com/Finch-API/finch-api-node/commit/25fd2521f3e946ab41bc1e71297eeddb29ee45e8))
22+
* **mcp:** add line numbers to code tool errors ([5430d7c](https://github.com/Finch-API/finch-api-node/commit/5430d7cf0251413703e4a2140fc207028167d32a))
23+
* **mcp:** clarify http auth error ([077f4fe](https://github.com/Finch-API/finch-api-node/commit/077f4fe766eb2e8c4e2ecb3884ff6aacf6c92ce7))
24+
* sync repo ([9843e27](https://github.com/Finch-API/finch-api-node/commit/9843e2779204d6a20b426b67e990afdfa38127e2))
25+
26+
27+
### Documentation
28+
29+
* **mcp:** add a README button for one-click add to Cursor ([0b5817d](https://github.com/Finch-API/finch-api-node/commit/0b5817de290c36f3f52cd2346caa88fb9e6f8aff))
30+
* **mcp:** add a README link to add server to VS Code or Claude Code ([c6cd9d8](https://github.com/Finch-API/finch-api-node/commit/c6cd9d8371e4ebf2b5bc5413497f11c1211772f6))
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)