Skip to content

Commit 7a08e29

Browse files
release: 7.0.0
1 parent c473d41 commit 7a08e29

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-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 ([0efa1c9](https://github.com/Finch-API/finch-api-node/commit/0efa1c9fadb954b4f7f0c026d9143577739b5168))
10+
* **api:** api update ([ed596b1](https://github.com/Finch-API/finch-api-node/commit/ed596b1e7a2d9aaa7027583801f55e4b3c3fe549))
11+
* **api:** move node to typescript generator ([055c328](https://github.com/Finch-API/finch-api-node/commit/055c328767f69765f5b1dc6c3a599cd17952027f))
12+
* **api:** update automated code reviewer selection ([737be63](https://github.com/Finch-API/finch-api-node/commit/737be6328d9bd13e1fd44ce1f83ba8687681a457))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([89ca131](https://github.com/Finch-API/finch-api-node/commit/89ca1317a15b585d6a634e534eb78665df615586))
14+
15+
16+
### Chores
17+
18+
* **internal:** codegen related update ([c9599bc](https://github.com/Finch-API/finch-api-node/commit/c9599bc0534ac7336491c6b03557d046bcb34cca))
19+
* **internal:** codegen related update ([3afbaa0](https://github.com/Finch-API/finch-api-node/commit/3afbaa07e3c5185ceb3e1928da6d6abf1fbb75b9))
20+
* mcp code tool explicit error message when missing a run function ([c016cee](https://github.com/Finch-API/finch-api-node/commit/c016ceea4ce92e8168aef85e41bddbc3b081d7e7))
21+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([6b78f6e](https://github.com/Finch-API/finch-api-node/commit/6b78f6eadb987b04e310494d58708542a6c4852b))
22+
* **mcp:** add line numbers to code tool errors ([8eb0945](https://github.com/Finch-API/finch-api-node/commit/8eb09456c8dea827ac2fb41974d9f0d607407133))
23+
* **mcp:** clarify http auth error ([c473d41](https://github.com/Finch-API/finch-api-node/commit/c473d41a9891b0a70e24657956ceec4dcfb80ca2))
24+
* sync repo ([59ef994](https://github.com/Finch-API/finch-api-node/commit/59ef9942448f92ce4b986aa6a2d803c3e8bdadaa))
25+
26+
27+
### Documentation
28+
29+
* **mcp:** add a README button for one-click add to Cursor ([819f02e](https://github.com/Finch-API/finch-api-node/commit/819f02e271d60280c8cc16ca0fb024c0ccfde6c0))
30+
* **mcp:** add a README link to add server to VS Code or Claude Code ([d9c9507](https://github.com/Finch-API/finch-api-node/commit/d9c950774f0948dfbe7d27a5e8ffd5d0df6fe97c))
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)