Skip to content

Commit 06aafcb

Browse files
release: 7.0.0
1 parent fc70cef commit 06aafcb

File tree

6 files changed

+31
-5
lines changed

6 files changed

+31
-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: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
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 ([db71506](https://github.com/Finch-API/finch-api-node/commit/db7150602ab3ff0373e29aec030dcbfbdf7a4354))
10+
* **api:** move node to typescript generator ([bad2299](https://github.com/Finch-API/finch-api-node/commit/bad22995d2e0548281bcba2781735a024a9f810b))
11+
* **api:** update automated code reviewer selection ([281a605](https://github.com/Finch-API/finch-api-node/commit/281a6052c089b50d3cd094110ce4caf65cdc2d5d))
12+
* **mcp:** enable optional code execution tool on http mcp servers ([f1ab2cc](https://github.com/Finch-API/finch-api-node/commit/f1ab2cc5d49db587eea9618c762873c2f36f3805))
13+
14+
15+
### Chores
16+
17+
* **internal:** codegen related update ([cd2fef9](https://github.com/Finch-API/finch-api-node/commit/cd2fef9767fe0f93cad0779c8cc36f513767f90b))
18+
* mcp code tool explicit error message when missing a run function ([d2e156a](https://github.com/Finch-API/finch-api-node/commit/d2e156a6c3f8ee0bf669345605eefadb2ffda747))
19+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([fa3d399](https://github.com/Finch-API/finch-api-node/commit/fa3d399e19646353ac8e4fb7893d8b178e4f6619))
20+
* **mcp:** add line numbers to code tool errors ([325d1cd](https://github.com/Finch-API/finch-api-node/commit/325d1cd20edf9929dda50a63e0ac2ec84d7b9501))
21+
* sync repo ([c8b647d](https://github.com/Finch-API/finch-api-node/commit/c8b647d1b3bad5115f65763afae78afd519707b4))
22+
23+
24+
### Documentation
25+
26+
* **mcp:** add a README button for one-click add to Cursor ([8937dd1](https://github.com/Finch-API/finch-api-node/commit/8937dd12818f4f1e3fec8168bd06beb63c984452))
27+
* **mcp:** add a README link to add server to VS Code or Claude Code ([fc70cef](https://github.com/Finch-API/finch-api-node/commit/fc70cef44814740b898a0d30f6386c0727aaea72))
28+
329
## 6.38.0 (2025-10-27)
430

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