Skip to content

Commit 8816051

Browse files
release: 7.0.0
1 parent 7b8c265 commit 8816051

File tree

6 files changed

+40
-5
lines changed

6 files changed

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

3+
## 7.0.0 (2025-11-18)
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 ([ea16506](https://github.com/Finch-API/finch-api-node/commit/ea1650644628f1bd7b317700d96df7fb12ca37f0))
10+
* **api:** api update ([79dbfd6](https://github.com/Finch-API/finch-api-node/commit/79dbfd6b94fd6529d694db74c77cf80b5f92ec2a))
11+
* **api:** move node to typescript generator ([11f487c](https://github.com/Finch-API/finch-api-node/commit/11f487c642cfb4234f56e33eb41d88e2f9fb70e6))
12+
* **api:** update automated code reviewer selection ([d8368ba](https://github.com/Finch-API/finch-api-node/commit/d8368ba6d5f8462878d98574aa24b779b90df92f))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([8c59113](https://github.com/Finch-API/finch-api-node/commit/8c591136f88f195a88ef9bab997fe1ab4c02b430))
14+
15+
16+
### Bug Fixes
17+
18+
* **mcp:** return tool execution error on jq failure ([8dd2ca1](https://github.com/Finch-API/finch-api-node/commit/8dd2ca12f800401787ec207b55fcc1fb0bdaa74d))
19+
20+
21+
### Chores
22+
23+
* **internal:** codegen related update ([7db4961](https://github.com/Finch-API/finch-api-node/commit/7db49617038b78e4dcba4e7dfe7c0ee779f87cbb))
24+
* **internal:** codegen related update ([1283c4c](https://github.com/Finch-API/finch-api-node/commit/1283c4c771978099b1e6fc26005e399540938c60))
25+
* mcp code tool explicit error message when missing a run function ([fac2997](https://github.com/Finch-API/finch-api-node/commit/fac299784d92820ba58856357ae079554e71d9ee))
26+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([bcc88f4](https://github.com/Finch-API/finch-api-node/commit/bcc88f43cddb2b8db767a6f394247f65d16fda0c))
27+
* **mcp:** add line numbers to code tool errors ([1ed9911](https://github.com/Finch-API/finch-api-node/commit/1ed99118eed8230225a9845e87c14c1855d3a2c4))
28+
* **mcp:** clarify http auth error ([050d2e5](https://github.com/Finch-API/finch-api-node/commit/050d2e57322dbf88890ac984b16e2bae3ec7df0a))
29+
* **mcp:** upgrade jq-web ([7b8c265](https://github.com/Finch-API/finch-api-node/commit/7b8c2652508497545dac3420d89450957a231545))
30+
* sync repo ([0fe1212](https://github.com/Finch-API/finch-api-node/commit/0fe1212a23697868fdcb99c1897032fa89dd4a2b))
31+
32+
33+
### Documentation
34+
35+
* **mcp:** add a README button for one-click add to Cursor ([3f07a5f](https://github.com/Finch-API/finch-api-node/commit/3f07a5fdbdb0cdd72a4f0525940fb24e7c23bb8a))
36+
* **mcp:** add a README link to add server to VS Code or Claude Code ([87421d9](https://github.com/Finch-API/finch-api-node/commit/87421d9f70c3a1d730aa6aea5a31011a46cd63cb))
37+
338
## 6.38.0 (2025-10-27)
439

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