Skip to content

Commit 43699bb

Browse files
release: 7.0.0
1 parent 85b7e38 commit 43699bb

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 ([dad22ef](https://github.com/Finch-API/finch-api-node/commit/dad22efc6bb3167d1be62bd7a980201e902b1570))
10+
* **api:** api update ([f8ac815](https://github.com/Finch-API/finch-api-node/commit/f8ac815bf1b55f4eca840acf0faa458ff38c2467))
11+
* **api:** move node to typescript generator ([ba006be](https://github.com/Finch-API/finch-api-node/commit/ba006beca2b2a73e241d8373fcae8180f92e2d6e))
12+
* **api:** update automated code reviewer selection ([36f2760](https://github.com/Finch-API/finch-api-node/commit/36f276029705c253b3d26fe9fcf3a7144a4e384d))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([d835ee4](https://github.com/Finch-API/finch-api-node/commit/d835ee4767ddc1201d5209e75eb457fb5674e9f7))
14+
15+
16+
### Chores
17+
18+
* **internal:** codegen related update ([78a7b62](https://github.com/Finch-API/finch-api-node/commit/78a7b6211a4e1f2588bb4e10db69b9e2febb6051))
19+
* **internal:** codegen related update ([e9a83fd](https://github.com/Finch-API/finch-api-node/commit/e9a83fd1624efc03eaa612fb85cb1bdfd578acb8))
20+
* mcp code tool explicit error message when missing a run function ([b64a39b](https://github.com/Finch-API/finch-api-node/commit/b64a39b56c0620adf4862a70227aa7c5ac7eb816))
21+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([5a9e31c](https://github.com/Finch-API/finch-api-node/commit/5a9e31c5461b539ff2b2cdd369a14e88c521ceeb))
22+
* **mcp:** add line numbers to code tool errors ([dbe021b](https://github.com/Finch-API/finch-api-node/commit/dbe021bd1d3fcff21a3a55303b2b39f8dce5b78d))
23+
* **mcp:** clarify http auth error ([85b7e38](https://github.com/Finch-API/finch-api-node/commit/85b7e38da6bd964fa5956c688ea0472c897fcc29))
24+
* sync repo ([bb2022c](https://github.com/Finch-API/finch-api-node/commit/bb2022c7a2c4fa97f28058c127106bfe81b2c196))
25+
26+
27+
### Documentation
28+
29+
* **mcp:** add a README button for one-click add to Cursor ([501166a](https://github.com/Finch-API/finch-api-node/commit/501166a2102e752dacabc0cac5e033dbf87761c3))
30+
* **mcp:** add a README link to add server to VS Code or Claude Code ([60e3c65](https://github.com/Finch-API/finch-api-node/commit/60e3c6558917e930d4d932f7bd6b144f8752b719))
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)