Skip to content

Commit 36c99ad

Browse files
release: 7.0.0
1 parent 92a4e88 commit 36c99ad

File tree

6 files changed

+32
-5
lines changed

6 files changed

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

3+
## 7.0.0 (2025-11-07)
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 ([5a8cdd1](https://github.com/Finch-API/finch-api-node/commit/5a8cdd10e2ecd1859395548d2dad73815d41c6ba))
10+
* **api:** move node to typescript generator ([40d00a7](https://github.com/Finch-API/finch-api-node/commit/40d00a702d5341fb02ebfdf42e00f84b1a6ec395))
11+
* **api:** update automated code reviewer selection ([0b9452b](https://github.com/Finch-API/finch-api-node/commit/0b9452bd63c86c74298b8155d8c8b923385c8164))
12+
* **mcp:** enable optional code execution tool on http mcp servers ([932a199](https://github.com/Finch-API/finch-api-node/commit/932a199bf51c18abaa61e7167df04db67d9c2be0))
13+
14+
15+
### Chores
16+
17+
* **internal:** codegen related update ([92a4e88](https://github.com/Finch-API/finch-api-node/commit/92a4e886d6bcf9d4cab28a366b41d852010f86a8))
18+
* **internal:** codegen related update ([537def9](https://github.com/Finch-API/finch-api-node/commit/537def9b886a5c31826a67c725339492dfc30de8))
19+
* mcp code tool explicit error message when missing a run function ([72fd704](https://github.com/Finch-API/finch-api-node/commit/72fd7041e1d30b307f03897e81c5f48926571fc5))
20+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([6899301](https://github.com/Finch-API/finch-api-node/commit/6899301194e0e564a33b63082f1051f4e15c47bc))
21+
* **mcp:** add line numbers to code tool errors ([73be04d](https://github.com/Finch-API/finch-api-node/commit/73be04dc695b187ad82643673f0e56fa4e142ae6))
22+
* sync repo ([7d21ba0](https://github.com/Finch-API/finch-api-node/commit/7d21ba094b858a8c69cb7d5acd132adfbc947a6c))
23+
24+
25+
### Documentation
26+
27+
* **mcp:** add a README button for one-click add to Cursor ([4c160b0](https://github.com/Finch-API/finch-api-node/commit/4c160b0c811d72a2d4e5194e7786fd44360b129e))
28+
* **mcp:** add a README link to add server to VS Code or Claude Code ([e442c05](https://github.com/Finch-API/finch-api-node/commit/e442c0578e225462c6b59a39cb207a8bbf4efe32))
29+
330
## 6.38.0 (2025-10-27)
431

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