Skip to content

Commit b6b4f7f

Browse files
release: 7.0.0
1 parent ed29056 commit b6b4f7f

6 files changed

Lines changed: 32 additions & 5 deletions

File tree

.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 ([385f44c](https://github.com/Finch-API/finch-api-node/commit/385f44ccb693e01a8088edb44432e0539f773793))
10+
* **api:** move node to typescript generator ([d219f15](https://github.com/Finch-API/finch-api-node/commit/d219f150b06f0bdf3fe3715956578417aeeb8707))
11+
* **api:** update automated code reviewer selection ([de87bb4](https://github.com/Finch-API/finch-api-node/commit/de87bb4ca5e6399e173346fa78914fec1bbcff68))
12+
* **mcp:** enable optional code execution tool on http mcp servers ([a580f97](https://github.com/Finch-API/finch-api-node/commit/a580f97c584a89619e1b1c966852685b52f6ab0b))
13+
14+
15+
### Chores
16+
17+
* **internal:** codegen related update ([ed29056](https://github.com/Finch-API/finch-api-node/commit/ed290567278b6b55fac3520ff812ac2a9808b19d))
18+
* **internal:** codegen related update ([d6cf486](https://github.com/Finch-API/finch-api-node/commit/d6cf486e92f6306e6a447712036ed7b4c387e11b))
19+
* mcp code tool explicit error message when missing a run function ([5dce8c1](https://github.com/Finch-API/finch-api-node/commit/5dce8c132bd8f64196825cd1a4e2c961305d9b08))
20+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([54a18ef](https://github.com/Finch-API/finch-api-node/commit/54a18ef31be61433b6762304045ddcf674aecf5e))
21+
* **mcp:** add line numbers to code tool errors ([f271351](https://github.com/Finch-API/finch-api-node/commit/f271351b3adf906152fdee171f0fc2fde8f605c3))
22+
* sync repo ([dd702fa](https://github.com/Finch-API/finch-api-node/commit/dd702fa8e52f8680b6d701bb3ac55a35299aabdb))
23+
24+
25+
### Documentation
26+
27+
* **mcp:** add a README button for one-click add to Cursor ([eb8e42c](https://github.com/Finch-API/finch-api-node/commit/eb8e42c515d34876f7150fb7cbe824086dda7d1b))
28+
* **mcp:** add a README link to add server to VS Code or Claude Code ([908d5ef](https://github.com/Finch-API/finch-api-node/commit/908d5efd4521fa11d4aeff78bd5851f50106ca30))
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)