Skip to content

Commit c39e401

Browse files
release: 7.0.0
1 parent 1525342 commit c39e401

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-20)
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 ([84961db](https://github.com/Finch-API/finch-api-node/commit/84961dbbac020d9eeac6cc3731af85d60e698bdd))
10+
* **api:** api update ([9c11206](https://github.com/Finch-API/finch-api-node/commit/9c11206a938d192ad64d9da9f5dd5c4ad3f82029))
11+
* **api:** move node to typescript generator ([f6bc61b](https://github.com/Finch-API/finch-api-node/commit/f6bc61b8faa279b0b74210d51b0ca8248a481864))
12+
* **api:** update automated code reviewer selection ([d55dd95](https://github.com/Finch-API/finch-api-node/commit/d55dd95bfe0367e081aabcf6de8311d73ce837e7))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([f52d0f4](https://github.com/Finch-API/finch-api-node/commit/f52d0f4563a6858cd8ae4c9b5a19755a57dc15cf))
14+
15+
16+
### Bug Fixes
17+
18+
* **api:** migrate custom code to TypeScript ([9ac7894](https://github.com/Finch-API/finch-api-node/commit/9ac789424c61d8f79787693f5f19a0ccf5f4c82e))
19+
* **api:** resolve build issues ([8eaa54e](https://github.com/Finch-API/finch-api-node/commit/8eaa54efaa816b8365bfb75c6c73fe064b0b69b1))
20+
* **mcp:** return tool execution error on jq failure ([3221e69](https://github.com/Finch-API/finch-api-node/commit/3221e6904c16dadc13fbded7f76b1e2562243a4e))
21+
* **tests:** fix tests ([1525342](https://github.com/Finch-API/finch-api-node/commit/152534298c97ad0cafdda20d803b5ddd7980d7a2))
22+
23+
24+
### Chores
25+
26+
* **internal:** codegen related update ([77a4576](https://github.com/Finch-API/finch-api-node/commit/77a4576d03e0d26157b19a56adb87bf9e3efba42))
27+
* **internal:** codegen related update ([44b337a](https://github.com/Finch-API/finch-api-node/commit/44b337a429dba48de147da7cd7ec8b3ff690bb4e))
28+
* mcp code tool explicit error message when missing a run function ([9a5b89a](https://github.com/Finch-API/finch-api-node/commit/9a5b89a4c8eddf43af56e6a6f0c4cb70f9679125))
29+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([9fa02d2](https://github.com/Finch-API/finch-api-node/commit/9fa02d2cd07f59a8640f18ecadfcd57eb584401a))
30+
* **mcp:** add line numbers to code tool errors ([27eaa6a](https://github.com/Finch-API/finch-api-node/commit/27eaa6a35e593a514e0ea66279e470fd5b7dd7fd))
31+
* **mcp:** clarify http auth error ([6c1622f](https://github.com/Finch-API/finch-api-node/commit/6c1622f29570570f4cf1fba373075a6c940dfa3e))
32+
* **mcp:** upgrade jq-web ([e3c4ecd](https://github.com/Finch-API/finch-api-node/commit/e3c4ecdc1c28ff01d35d0e5623d876548a49d7ba))
33+
* sync repo ([5bf83e4](https://github.com/Finch-API/finch-api-node/commit/5bf83e40cc516bceed54aca97336aeceeae85b20))
34+
35+
36+
### Documentation
37+
38+
* **mcp:** add a README button for one-click add to Cursor ([9ab403e](https://github.com/Finch-API/finch-api-node/commit/9ab403eabf69401ea9c979059c53bc157c3e2d4e))
39+
* **mcp:** add a README link to add server to VS Code or Claude Code ([78a2126](https://github.com/Finch-API/finch-api-node/commit/78a212644f2f4d2da486cdf498f2637173610010))
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)