Skip to content

Commit c484eb6

Browse files
release: 7.0.0
1 parent 2467521 commit c484eb6

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 ([53f4cc4](https://github.com/Finch-API/finch-api-node/commit/53f4cc4429b392dfe76c77366bb962637451bb9c))
10+
* **api:** api update ([9a32524](https://github.com/Finch-API/finch-api-node/commit/9a32524c4f9d9814a96de2b32ddfe4a050a95a96))
11+
* **api:** move node to typescript generator ([571b156](https://github.com/Finch-API/finch-api-node/commit/571b156ff78e26c4eedf4718145437dbb9fd2695))
12+
* **api:** update automated code reviewer selection ([682ccd1](https://github.com/Finch-API/finch-api-node/commit/682ccd1150c15dc9f4a153056eda4ceccb6b4576))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([0c4555a](https://github.com/Finch-API/finch-api-node/commit/0c4555ab6f6c146c7cbee4d572283594ecb9e59b))
14+
15+
16+
### Chores
17+
18+
* **internal:** codegen related update ([d1f842b](https://github.com/Finch-API/finch-api-node/commit/d1f842b5bb67d70baf85f97aa33c8e944081990b))
19+
* **internal:** codegen related update ([2ac59d3](https://github.com/Finch-API/finch-api-node/commit/2ac59d3d912406be5dc6718c9bb7eae52692696d))
20+
* mcp code tool explicit error message when missing a run function ([f72eb0a](https://github.com/Finch-API/finch-api-node/commit/f72eb0ac129558818b92762f331c485703c308f7))
21+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([71130f2](https://github.com/Finch-API/finch-api-node/commit/71130f201c58e7e7c0cc4310cd243d24413534eb))
22+
* **mcp:** add line numbers to code tool errors ([b62cfce](https://github.com/Finch-API/finch-api-node/commit/b62cfce71b26088734def91f0a2bed28c5a88fd3))
23+
* **mcp:** clarify http auth error ([2467521](https://github.com/Finch-API/finch-api-node/commit/2467521bfc6528bd00aa4db562f5338e835cb660))
24+
* sync repo ([a26b809](https://github.com/Finch-API/finch-api-node/commit/a26b809bf630ee79643d89b545ebbf5a4faf52be))
25+
26+
27+
### Documentation
28+
29+
* **mcp:** add a README button for one-click add to Cursor ([154fea6](https://github.com/Finch-API/finch-api-node/commit/154fea63db04cecc18ec8221840682a112b000ea))
30+
* **mcp:** add a README link to add server to VS Code or Claude Code ([5687fbe](https://github.com/Finch-API/finch-api-node/commit/5687fbe5ad03059f3e32af35170c0bedc0f17132))
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)