Skip to content

Commit 505a82d

Browse files
release: 7.0.0
1 parent 3bfa1e6 commit 505a82d

File tree

6 files changed

+43
-5
lines changed

6 files changed

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

3+
## 7.0.0 (2025-11-21)
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 ([4f74677](https://github.com/Finch-API/finch-api-node/commit/4f746770f0448b0bfeb754a29f0009e20e783a05))
10+
* **api:** api update ([736f7d8](https://github.com/Finch-API/finch-api-node/commit/736f7d82bac6112ff4914ac1630435672f3cc588))
11+
* **api:** move node to typescript generator ([8fb67bc](https://github.com/Finch-API/finch-api-node/commit/8fb67bca633ce56d9356bd4a585af57b8e8fac53))
12+
* **api:** update automated code reviewer selection ([bb7e9a7](https://github.com/Finch-API/finch-api-node/commit/bb7e9a7322a8557e7e9d48c1c73e5cb6a3c1cc62))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([c7eddd2](https://github.com/Finch-API/finch-api-node/commit/c7eddd22566e6c59769b5b11e96bef6bc437a4a2))
14+
15+
16+
### Bug Fixes
17+
18+
* **api:** migrate custom code to TypeScript ([b75ef4c](https://github.com/Finch-API/finch-api-node/commit/b75ef4c4cb6bf6f06e7f0b480e76b0996b3a68ff))
19+
* **api:** resolve build issues ([3f70f36](https://github.com/Finch-API/finch-api-node/commit/3f70f368b585f00951496e27492c987a8ed7253b))
20+
* **mcp:** return tool execution error on jq failure ([6d9afad](https://github.com/Finch-API/finch-api-node/commit/6d9afad64a437221d86d4f932e3c997ed6ea6827))
21+
* **tests:** fix tests ([3bfa1e6](https://github.com/Finch-API/finch-api-node/commit/3bfa1e667a3a972636328c24be2025cc6b822323))
22+
23+
24+
### Chores
25+
26+
* **internal:** codegen related update ([927900e](https://github.com/Finch-API/finch-api-node/commit/927900e2c12dfa8524995893c17076ea940a68b1))
27+
* **internal:** codegen related update ([9afc254](https://github.com/Finch-API/finch-api-node/commit/9afc254c57494bbbce6d80933f3fa039d5dcb3ac))
28+
* mcp code tool explicit error message when missing a run function ([c66ab9b](https://github.com/Finch-API/finch-api-node/commit/c66ab9bb667b5eefec71e59679a8aa8641716811))
29+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([097362f](https://github.com/Finch-API/finch-api-node/commit/097362ff3f8ff2962f3bd0edca2920bbe49aa59d))
30+
* **mcp:** add line numbers to code tool errors ([17fb2e3](https://github.com/Finch-API/finch-api-node/commit/17fb2e3531e26bd05234a8c5055f99e4c3d0577d))
31+
* **mcp:** clarify http auth error ([4848f93](https://github.com/Finch-API/finch-api-node/commit/4848f9386e1c0920041f490d797070dae1894e51))
32+
* **mcp:** upgrade jq-web ([1650b3c](https://github.com/Finch-API/finch-api-node/commit/1650b3c221ed5d9d69d33ccc32766910c685c217))
33+
* sync repo ([06db351](https://github.com/Finch-API/finch-api-node/commit/06db351045a890ed08240bd01f7e8f2157007e88))
34+
35+
36+
### Documentation
37+
38+
* **mcp:** add a README button for one-click add to Cursor ([128ba4f](https://github.com/Finch-API/finch-api-node/commit/128ba4f02140a616b7a2d6b91fe7c1ce07fdd36b))
39+
* **mcp:** add a README link to add server to VS Code or Claude Code ([9c3c5b1](https://github.com/Finch-API/finch-api-node/commit/9c3c5b168dd3ca2f286a98d143e0887f5e9b1a53))
40+
341
## 6.38.0 (2025-10-27)
442

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