Skip to content

Commit 516813d

Browse files
release: 7.0.0
1 parent 25214ae commit 516813d

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-12)
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 ([146f521](https://github.com/Finch-API/finch-api-node/commit/146f521ec302a3cc901081232d04ec9d29198ca0))
10+
* **api:** api update ([a646b41](https://github.com/Finch-API/finch-api-node/commit/a646b41713f3c990b301a0cb9d5b633be949af8d))
11+
* **api:** move node to typescript generator ([95c4cda](https://github.com/Finch-API/finch-api-node/commit/95c4cda9446d9062e71b2e098accecb10adbad27))
12+
* **api:** update automated code reviewer selection ([cab4c7a](https://github.com/Finch-API/finch-api-node/commit/cab4c7adea0a94f6b19dff3a37989b93933af1e3))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([50e878f](https://github.com/Finch-API/finch-api-node/commit/50e878f2ee6174f16dfaab75fa7e1e395f2eb37a))
14+
15+
16+
### Chores
17+
18+
* **internal:** codegen related update ([710cb8a](https://github.com/Finch-API/finch-api-node/commit/710cb8a40324fdd367b74847be70bf0795b63b02))
19+
* **internal:** codegen related update ([22c2ef7](https://github.com/Finch-API/finch-api-node/commit/22c2ef7ea9134c1cfa970e6e5455936bebb50bd3))
20+
* mcp code tool explicit error message when missing a run function ([7b1a3cc](https://github.com/Finch-API/finch-api-node/commit/7b1a3cc35f8b87c97d0b74adc5c90e28f10664a3))
21+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([be9cc6c](https://github.com/Finch-API/finch-api-node/commit/be9cc6c57cd1b7135047ed551330125af6a873a8))
22+
* **mcp:** add line numbers to code tool errors ([5b5f10d](https://github.com/Finch-API/finch-api-node/commit/5b5f10dd5b76cbbb519b925085481f2b5c72dff7))
23+
* **mcp:** clarify http auth error ([25214ae](https://github.com/Finch-API/finch-api-node/commit/25214ae6f5413f3bcb8b9f0c905dfecdf227caf5))
24+
* sync repo ([07b5a0b](https://github.com/Finch-API/finch-api-node/commit/07b5a0b3188dd341380c874054f625a3cdf5582b))
25+
26+
27+
### Documentation
28+
29+
* **mcp:** add a README button for one-click add to Cursor ([a91e387](https://github.com/Finch-API/finch-api-node/commit/a91e387e51a0010cb4b23bd783dabc6646bb66c7))
30+
* **mcp:** add a README link to add server to VS Code or Claude Code ([327fe27](https://github.com/Finch-API/finch-api-node/commit/327fe271d534d884d1ccf6d3d08a316080f29800))
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)