Skip to content

Commit 3b42f24

Browse files
release: 7.0.0
1 parent 3fec2a3 commit 3b42f24

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-08)
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 ([08818f8](https://github.com/Finch-API/finch-api-node/commit/08818f84c3e20942f1064a38ff0be2648a430d5a))
10+
* **api:** move node to typescript generator ([dc49e60](https://github.com/Finch-API/finch-api-node/commit/dc49e60de586091eeb108b8d5a050734f8f0ec12))
11+
* **api:** update automated code reviewer selection ([f5dc30b](https://github.com/Finch-API/finch-api-node/commit/f5dc30b1961e99a9a0a40e407e6ce386aa851545))
12+
* **mcp:** enable optional code execution tool on http mcp servers ([fc9b810](https://github.com/Finch-API/finch-api-node/commit/fc9b810c375e29ff3265afad9d779f4278a8795b))
13+
14+
15+
### Chores
16+
17+
* **internal:** codegen related update ([3fec2a3](https://github.com/Finch-API/finch-api-node/commit/3fec2a330f04a67dd17d20236a1cc209024bd875))
18+
* **internal:** codegen related update ([1212101](https://github.com/Finch-API/finch-api-node/commit/12121015e3ce0f6cb6c3cd5bcc38fb0d6bb18d64))
19+
* mcp code tool explicit error message when missing a run function ([5eafa8f](https://github.com/Finch-API/finch-api-node/commit/5eafa8f5df91686d8ddb2929efca71e46553f5f6))
20+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([54fcda2](https://github.com/Finch-API/finch-api-node/commit/54fcda20bea6cd508e30d9d0a7e9c08f865f53e8))
21+
* **mcp:** add line numbers to code tool errors ([141a7e6](https://github.com/Finch-API/finch-api-node/commit/141a7e6fe5bfcc99d69861cec476939516cb56a0))
22+
* sync repo ([52561de](https://github.com/Finch-API/finch-api-node/commit/52561de5311f31f89c30615eaffec3dcc255bf94))
23+
24+
25+
### Documentation
26+
27+
* **mcp:** add a README button for one-click add to Cursor ([058fed1](https://github.com/Finch-API/finch-api-node/commit/058fed138fa3438b8962e60194e0b87cc2c2b082))
28+
* **mcp:** add a README link to add server to VS Code or Claude Code ([5d06b40](https://github.com/Finch-API/finch-api-node/commit/5d06b40a3459e2f5a47b79b2d213e71ba1111a0f))
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)