Skip to content

Commit 942a5cc

Browse files
release: 7.0.0
1 parent 55ede98 commit 942a5cc

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-11)
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 ([4e8c788](https://github.com/Finch-API/finch-api-node/commit/4e8c788629f913cbfde36d266aa1c4f1bb5c1b04))
10+
* **api:** api update ([431f4ef](https://github.com/Finch-API/finch-api-node/commit/431f4ef4b0b9f7d6b877823951d1f78f9c4ef55a))
11+
* **api:** move node to typescript generator ([2bf3e1f](https://github.com/Finch-API/finch-api-node/commit/2bf3e1f3008fe53e5aea80d14488643e1f95c172))
12+
* **api:** update automated code reviewer selection ([d0b08ef](https://github.com/Finch-API/finch-api-node/commit/d0b08ef8b28ef7ca67b7185f09ed1a39a4fb21b8))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([88add77](https://github.com/Finch-API/finch-api-node/commit/88add77d5ead8629b2157639e1ddf8bfb323e2dc))
14+
15+
16+
### Chores
17+
18+
* **internal:** codegen related update ([5b820d3](https://github.com/Finch-API/finch-api-node/commit/5b820d3f5ce4ab9dd6ab03538645184a8e7371fb))
19+
* **internal:** codegen related update ([4d81ea5](https://github.com/Finch-API/finch-api-node/commit/4d81ea57550f123d21dea7c6f42c3c256ad4a8bc))
20+
* mcp code tool explicit error message when missing a run function ([1e2df3c](https://github.com/Finch-API/finch-api-node/commit/1e2df3c390502d0d8e80031a77a8ebb93a78ef2a))
21+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([44e4a97](https://github.com/Finch-API/finch-api-node/commit/44e4a976b983e5a8f27f50ccbe991af8c9d465dd))
22+
* **mcp:** add line numbers to code tool errors ([60e1416](https://github.com/Finch-API/finch-api-node/commit/60e141671c94bae66fdfddad58e539c3ee8fbf1e))
23+
* **mcp:** clarify http auth error ([55ede98](https://github.com/Finch-API/finch-api-node/commit/55ede98f6992601cd4a74120760c5161479eb028))
24+
* sync repo ([a0a2f67](https://github.com/Finch-API/finch-api-node/commit/a0a2f6712604190d67be7cec7f2c17851b876b3f))
25+
26+
27+
### Documentation
28+
29+
* **mcp:** add a README button for one-click add to Cursor ([5fafc59](https://github.com/Finch-API/finch-api-node/commit/5fafc59f7ab9d727cc99f16abb365496ed912bc0))
30+
* **mcp:** add a README link to add server to VS Code or Claude Code ([fc6b7f7](https://github.com/Finch-API/finch-api-node/commit/fc6b7f73285cc8fb3eb00e20d04d831fd3f6200c))
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)