Skip to content

Commit 8e8de6f

Browse files
release: 7.0.0
1 parent 028135e commit 8e8de6f

6 files changed

Lines changed: 34 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: 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 ([8d20494](https://github.com/Finch-API/finch-api-node/commit/8d204941e442ae09248d1f25766f4c74bc603e1b))
10+
* **api:** api update ([7892308](https://github.com/Finch-API/finch-api-node/commit/789230807233702f04c9ffc07100c534ca824729))
11+
* **api:** move node to typescript generator ([161daf9](https://github.com/Finch-API/finch-api-node/commit/161daf9334b3058582f0f2fa8b8e5ebc4ad8b99b))
12+
* **api:** update automated code reviewer selection ([1103433](https://github.com/Finch-API/finch-api-node/commit/110343374781ff7a4d4ad6bca85bdbdb415c0a8c))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([68d1de4](https://github.com/Finch-API/finch-api-node/commit/68d1de407a8f54505552874ac3a75018b7784b97))
14+
15+
16+
### Chores
17+
18+
* **internal:** codegen related update ([fe43108](https://github.com/Finch-API/finch-api-node/commit/fe43108cac968837ab929b468ba69f0fb5d32afb))
19+
* **internal:** codegen related update ([97b2572](https://github.com/Finch-API/finch-api-node/commit/97b2572cbb522651d69e2661b0be3d94c8db1080))
20+
* mcp code tool explicit error message when missing a run function ([70cb0a7](https://github.com/Finch-API/finch-api-node/commit/70cb0a76c4ff9c88ef275738834d6f7e36e53784))
21+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([70e56db](https://github.com/Finch-API/finch-api-node/commit/70e56db6df9c2f4d7e48db83e913e245b65f254b))
22+
* **mcp:** add line numbers to code tool errors ([cb2d001](https://github.com/Finch-API/finch-api-node/commit/cb2d0017b0440e950580099ccd5b3d8ec996481e))
23+
* **mcp:** clarify http auth error ([028135e](https://github.com/Finch-API/finch-api-node/commit/028135ecc9828b3b034dca64a43138ae0e6a73ca))
24+
* sync repo ([2b9ea20](https://github.com/Finch-API/finch-api-node/commit/2b9ea2060f46aec33c96f198b9bbfe26f88b7946))
25+
26+
27+
### Documentation
28+
29+
* **mcp:** add a README button for one-click add to Cursor ([2839a9c](https://github.com/Finch-API/finch-api-node/commit/2839a9c4c4344f2ca8f4b485b3ad29590666c9dd))
30+
* **mcp:** add a README link to add server to VS Code or Claude Code ([1a25fef](https://github.com/Finch-API/finch-api-node/commit/1a25fefb53a4f0d2d4bfe4cad8e1c31bc1c95c81))
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)