Skip to content

Commit 5d013c3

Browse files
release: 7.0.0
1 parent 67220d8 commit 5d013c3

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-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 ([6172547](https://github.com/Finch-API/finch-api-node/commit/6172547dd908f11cb87e3f8346498b086084104e))
10+
* **api:** api update ([95fc7fd](https://github.com/Finch-API/finch-api-node/commit/95fc7fd425f5c154ddf8cb32a697444111683c45))
11+
* **api:** move node to typescript generator ([6a5cf6a](https://github.com/Finch-API/finch-api-node/commit/6a5cf6a34d4bde6508f02593d60b708f21b9e01c))
12+
* **api:** update automated code reviewer selection ([7f68247](https://github.com/Finch-API/finch-api-node/commit/7f68247ceae5fabcd38a598595d38665b850bc80))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([ecb4472](https://github.com/Finch-API/finch-api-node/commit/ecb447251654082bf7bac1600d152d66f31d3429))
14+
15+
16+
### Chores
17+
18+
* **internal:** codegen related update ([a756463](https://github.com/Finch-API/finch-api-node/commit/a75646305616723caeb899087907840b4e740204))
19+
* **internal:** codegen related update ([822edd4](https://github.com/Finch-API/finch-api-node/commit/822edd4ad0553abba60f12607859ca01e2c676d0))
20+
* mcp code tool explicit error message when missing a run function ([06183cd](https://github.com/Finch-API/finch-api-node/commit/06183cdda07d4f5a2058ee069869c295fd0a919c))
21+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([5ae5da9](https://github.com/Finch-API/finch-api-node/commit/5ae5da9fa58693fe0316e0b7c829fa6e6b9c64dd))
22+
* **mcp:** add line numbers to code tool errors ([65df4d9](https://github.com/Finch-API/finch-api-node/commit/65df4d9afb542d226cc5beee5eb78acc0c11e7ba))
23+
* **mcp:** clarify http auth error ([67220d8](https://github.com/Finch-API/finch-api-node/commit/67220d85bdc907c8df59e4a4dd085e23e62fe7e2))
24+
* sync repo ([6c89203](https://github.com/Finch-API/finch-api-node/commit/6c89203b17d99169265b0da93be226f1a84cf04b))
25+
26+
27+
### Documentation
28+
29+
* **mcp:** add a README button for one-click add to Cursor ([9c44fb6](https://github.com/Finch-API/finch-api-node/commit/9c44fb6bcee97d14ec7558d8c51f04d5500bc4ee))
30+
* **mcp:** add a README link to add server to VS Code or Claude Code ([bceabe8](https://github.com/Finch-API/finch-api-node/commit/bceabe8c06eeee5526a439e8f0ae0649f565e4a9))
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)