Skip to content

Commit b688ff6

Browse files
release: 7.0.0
1 parent 851eb27 commit b688ff6

6 files changed

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

3+
## 7.0.0 (2025-11-10)
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 ([851eb27](https://github.com/Finch-API/finch-api-node/commit/851eb2726cd2d73a47acaf599d13acae6e917f97))
10+
* **api:** api update ([45c3398](https://github.com/Finch-API/finch-api-node/commit/45c339897c9896df006c02297f3863556eca59de))
11+
* **api:** move node to typescript generator ([c445b06](https://github.com/Finch-API/finch-api-node/commit/c445b068cf35ae1f3554394beb7d7c4da99c3bc5))
12+
* **api:** update automated code reviewer selection ([81a2374](https://github.com/Finch-API/finch-api-node/commit/81a23741f491500d0b596c5deb17f04f7565af14))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([9f5cf0f](https://github.com/Finch-API/finch-api-node/commit/9f5cf0f6c75044ef4c126909f6c4304c17b566cd))
14+
15+
16+
### Chores
17+
18+
* **internal:** codegen related update ([a36fefa](https://github.com/Finch-API/finch-api-node/commit/a36fefa216cf6e4666506e485cade4f310a151b2))
19+
* **internal:** codegen related update ([b53d75a](https://github.com/Finch-API/finch-api-node/commit/b53d75a6272d9ef89909b651c4c713f56888814c))
20+
* mcp code tool explicit error message when missing a run function ([5790508](https://github.com/Finch-API/finch-api-node/commit/5790508dcef8fda97a15cb5fc9503987a9742375))
21+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([466c3f5](https://github.com/Finch-API/finch-api-node/commit/466c3f5a124d7a4b9c86ae46a07ef8d4294cbc9a))
22+
* **mcp:** add line numbers to code tool errors ([806f52d](https://github.com/Finch-API/finch-api-node/commit/806f52d620a88b2d7ab33b2a001de367150e0a20))
23+
* sync repo ([6bb0d86](https://github.com/Finch-API/finch-api-node/commit/6bb0d86f64c92ac812e8954a90b029b96ff22e71))
24+
25+
26+
### Documentation
27+
28+
* **mcp:** add a README button for one-click add to Cursor ([1545388](https://github.com/Finch-API/finch-api-node/commit/1545388347477996c8a3ad7f828c5f1040837169))
29+
* **mcp:** add a README link to add server to VS Code or Claude Code ([7b6a795](https://github.com/Finch-API/finch-api-node/commit/7b6a79567aed672850ef55020bbf725d48379ca2))
30+
331
## 6.38.0 (2025-10-27)
432

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