Skip to content

Commit acaadd9

Browse files
release: 7.0.0
1 parent caa0e54 commit acaadd9

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 ([8b8f511](https://github.com/Finch-API/finch-api-node/commit/8b8f511c6cd64df4368800e493b2f4fe07b8af29))
10+
* **api:** move node to typescript generator ([0abae4e](https://github.com/Finch-API/finch-api-node/commit/0abae4ef900a650e62a6a09abdaf28c67e08ad31))
11+
* **api:** update automated code reviewer selection ([498af0b](https://github.com/Finch-API/finch-api-node/commit/498af0b2279c456946f581fc066914a8d41a24f3))
12+
* **mcp:** enable optional code execution tool on http mcp servers ([c94c425](https://github.com/Finch-API/finch-api-node/commit/c94c4253640c1e356e4553aa8f9a9881296a6062))
13+
14+
15+
### Chores
16+
17+
* **internal:** codegen related update ([3242e04](https://github.com/Finch-API/finch-api-node/commit/3242e042c1b18454905fbd0aedc670671cb428ad))
18+
* mcp code tool explicit error message when missing a run function ([03795a1](https://github.com/Finch-API/finch-api-node/commit/03795a1ff04dff1db24132b725877c813b4f0e9f))
19+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([5425471](https://github.com/Finch-API/finch-api-node/commit/542547191fe8571b66dd1e87219cc1f781285cd2))
20+
* **mcp:** add line numbers to code tool errors ([7c01188](https://github.com/Finch-API/finch-api-node/commit/7c011884cd44065c2f74d474e441f7f066ec7cd1))
21+
* sync repo ([4dd26b3](https://github.com/Finch-API/finch-api-node/commit/4dd26b3254280fb5555f78729968316f359e8a60))
22+
23+
24+
### Documentation
25+
26+
* **mcp:** add a README button for one-click add to Cursor ([faecba2](https://github.com/Finch-API/finch-api-node/commit/faecba2dca0339f8856913228f0de81f83d166a0))
27+
* **mcp:** add a README link to add server to VS Code or Claude Code ([caa0e54](https://github.com/Finch-API/finch-api-node/commit/caa0e5460d382e728e692b6169425aaaff9bc102))
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)