Skip to content

Commit bd405be

Browse files
release: 7.0.0
1 parent cd1e402 commit bd405be

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 ([b8d6456](https://github.com/Finch-API/finch-api-node/commit/b8d64565b3a5bcc6f6a0bea9fe22cb32c8381f61))
10+
* **api:** api update ([6f723e6](https://github.com/Finch-API/finch-api-node/commit/6f723e6a833f74016631464ec1655f9e83a9f643))
11+
* **api:** move node to typescript generator ([a0d5184](https://github.com/Finch-API/finch-api-node/commit/a0d5184a30b20e5de705652192baad46e6486789))
12+
* **api:** update automated code reviewer selection ([8b89cca](https://github.com/Finch-API/finch-api-node/commit/8b89cca44437752e6087232b8272b9a276a9abbe))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([5200eec](https://github.com/Finch-API/finch-api-node/commit/5200eec9eff79327b62756549af9f51e88bfe8bb))
14+
15+
16+
### Chores
17+
18+
* **internal:** codegen related update ([437f799](https://github.com/Finch-API/finch-api-node/commit/437f7998d9eb35006788a1c2095a1c4e596eb9fc))
19+
* **internal:** codegen related update ([a6464b0](https://github.com/Finch-API/finch-api-node/commit/a6464b0ee741bb0366865a902ce318ed54487cb6))
20+
* mcp code tool explicit error message when missing a run function ([44ca2b6](https://github.com/Finch-API/finch-api-node/commit/44ca2b61f887c70031f464a6a91e54e732b8abb5))
21+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([4ea49e6](https://github.com/Finch-API/finch-api-node/commit/4ea49e60b00e9483fbec74951d2aa35ded97c3b3))
22+
* **mcp:** add line numbers to code tool errors ([b9fb963](https://github.com/Finch-API/finch-api-node/commit/b9fb96337667aedad93e068815130ae65db25424))
23+
* **mcp:** clarify http auth error ([cd1e402](https://github.com/Finch-API/finch-api-node/commit/cd1e40280105eb0e0fb9a09d8f9302b03ec89e11))
24+
* sync repo ([976f625](https://github.com/Finch-API/finch-api-node/commit/976f6254639095557029341441b65e090b79a57c))
25+
26+
27+
### Documentation
28+
29+
* **mcp:** add a README button for one-click add to Cursor ([7249f23](https://github.com/Finch-API/finch-api-node/commit/7249f2323b4cfea77fafbee89abbbde28f38ad2c))
30+
* **mcp:** add a README link to add server to VS Code or Claude Code ([0f85558](https://github.com/Finch-API/finch-api-node/commit/0f855581df3e955cd3ccd5c626d4966739f91a51))
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)