Skip to content

Commit a9fa7bd

Browse files
release: 7.0.0
1 parent ffc6eab commit a9fa7bd

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-06)
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 ([bf3a1ce](https://github.com/Finch-API/finch-api-node/commit/bf3a1ce5c106ec4dbf8c0d29f50db171193ea9ab))
10+
* **api:** move node to typescript generator ([ca867b2](https://github.com/Finch-API/finch-api-node/commit/ca867b25b5c6507dbc16ee27f64fc6fbbd489241))
11+
* **api:** update automated code reviewer selection ([aa797bd](https://github.com/Finch-API/finch-api-node/commit/aa797bdbb9ed1626387e9c9f8f709987ba9fbf16))
12+
* **mcp:** enable optional code execution tool on http mcp servers ([a961d04](https://github.com/Finch-API/finch-api-node/commit/a961d04a6a1d130dc83b86f65f6d30f5da80356f))
13+
14+
15+
### Chores
16+
17+
* **internal:** codegen related update ([e2d1a06](https://github.com/Finch-API/finch-api-node/commit/e2d1a062a0e1c45640cb2b6093be99308f362c7e))
18+
* mcp code tool explicit error message when missing a run function ([8d95721](https://github.com/Finch-API/finch-api-node/commit/8d9572160f810e79af66321ae1b5fa08eaf6fd1f))
19+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([24f8915](https://github.com/Finch-API/finch-api-node/commit/24f89159dfbae8596c3b9bbe75db6b30d360d50d))
20+
* **mcp:** add line numbers to code tool errors ([8e80ff4](https://github.com/Finch-API/finch-api-node/commit/8e80ff431d43416c879ca5290f0d6f6b89976348))
21+
* sync repo ([deaebe9](https://github.com/Finch-API/finch-api-node/commit/deaebe9591a72f66a9cfaab6b2898828666b319c))
22+
23+
24+
### Documentation
25+
26+
* **mcp:** add a README button for one-click add to Cursor ([8656c9a](https://github.com/Finch-API/finch-api-node/commit/8656c9a8df6bf6c9cc971bfae9126db3c16093f8))
27+
* **mcp:** add a README link to add server to VS Code or Claude Code ([ffc6eab](https://github.com/Finch-API/finch-api-node/commit/ffc6eab5193b28388bbd2dbf8aee08004de09de0))
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)