Skip to content

Commit 218b41d

Browse files
release: 7.0.0
1 parent 146828f commit 218b41d

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 ([26aaaa3](https://github.com/Finch-API/finch-api-node/commit/26aaaa3087fbed0438250e8658b817201f05f141))
10+
* **api:** move node to typescript generator ([f28162d](https://github.com/Finch-API/finch-api-node/commit/f28162dfecce836433026daef6def227ee756975))
11+
* **api:** update automated code reviewer selection ([78e752b](https://github.com/Finch-API/finch-api-node/commit/78e752baa9072ad07299f3b837992925b2db5513))
12+
* **mcp:** enable optional code execution tool on http mcp servers ([f894014](https://github.com/Finch-API/finch-api-node/commit/f894014fa6a9d40d18aa781ad830fbb08cf070c1))
13+
14+
15+
### Chores
16+
17+
* **internal:** codegen related update ([4e1e3df](https://github.com/Finch-API/finch-api-node/commit/4e1e3df6d957b5bd958cd01418ce51859af557f8))
18+
* mcp code tool explicit error message when missing a run function ([d4f8c09](https://github.com/Finch-API/finch-api-node/commit/d4f8c098d5311c3976f0435dd720beb063648147))
19+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([b447fd3](https://github.com/Finch-API/finch-api-node/commit/b447fd312177f459cd01d105f4bbf631f38f5e3b))
20+
* **mcp:** add line numbers to code tool errors ([43a4c80](https://github.com/Finch-API/finch-api-node/commit/43a4c808b3743b71ea1c4362e10165c9922381b5))
21+
* sync repo ([f5a4df8](https://github.com/Finch-API/finch-api-node/commit/f5a4df86f382fcdbbe9f10529442c2c7f517c9bb))
22+
23+
24+
### Documentation
25+
26+
* **mcp:** add a README button for one-click add to Cursor ([9f86eec](https://github.com/Finch-API/finch-api-node/commit/9f86eecf5904afc1f111f3f922f23e5d04514553))
27+
* **mcp:** add a README link to add server to VS Code or Claude Code ([146828f](https://github.com/Finch-API/finch-api-node/commit/146828f40b3f63aaaff98d9273ad25f0fda46018))
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)