Skip to content

Commit 3f1404e

Browse files
release: 7.0.0
1 parent 2441a93 commit 3f1404e

File tree

6 files changed

+31
-5
lines changed

6 files changed

+31
-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: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# Changelog
22

3+
## 7.0.0 (2025-11-07)
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 ([81dd18a](https://github.com/Finch-API/finch-api-node/commit/81dd18a74a8efd0516461e7165acb2cedcf7c148))
10+
* **api:** move node to typescript generator ([98ff13a](https://github.com/Finch-API/finch-api-node/commit/98ff13aa43715a483d19fc4cb9025d943c5caba2))
11+
* **api:** update automated code reviewer selection ([75b0c04](https://github.com/Finch-API/finch-api-node/commit/75b0c040afcaf598f13b5f03404e4fd03a0484a1))
12+
* **mcp:** enable optional code execution tool on http mcp servers ([b8ea490](https://github.com/Finch-API/finch-api-node/commit/b8ea4909b479626b35f90982d9d90a4b1313d9c0))
13+
14+
15+
### Chores
16+
17+
* **internal:** codegen related update ([7e7c21e](https://github.com/Finch-API/finch-api-node/commit/7e7c21e8e037751b429fd231bb2f6ab33af0d53c))
18+
* mcp code tool explicit error message when missing a run function ([7f12a25](https://github.com/Finch-API/finch-api-node/commit/7f12a256519042d306a1015e0f40c4e2c62724ad))
19+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([38fb1b9](https://github.com/Finch-API/finch-api-node/commit/38fb1b9b9bebb1012010b2f9cd56b765dd9b65e6))
20+
* **mcp:** add line numbers to code tool errors ([d3757e5](https://github.com/Finch-API/finch-api-node/commit/d3757e5a4c465398c2206b485174fda9f0bcbf94))
21+
* sync repo ([004181c](https://github.com/Finch-API/finch-api-node/commit/004181c35aade4f0ac18aece5c36c4727ff1c902))
22+
23+
24+
### Documentation
25+
26+
* **mcp:** add a README button for one-click add to Cursor ([64779b5](https://github.com/Finch-API/finch-api-node/commit/64779b5b80fac398b792776315105d4ddb8fa0fe))
27+
* **mcp:** add a README link to add server to VS Code or Claude Code ([2441a93](https://github.com/Finch-API/finch-api-node/commit/2441a93aa66597667e3f4dba30724b763719179c))
28+
329
## 6.38.0 (2025-10-27)
430

531
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)