Skip to content

Commit 3d358c2

Browse files
release: 7.0.0
1 parent 93a70ac commit 3d358c2

6 files changed

Lines changed: 40 additions & 5 deletions

File tree

.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-13)
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 ([0178e5c](https://github.com/Finch-API/finch-api-node/commit/0178e5c44d5dda3d4f876f61460dc05c465e2952))
10+
* **api:** api update ([9b10925](https://github.com/Finch-API/finch-api-node/commit/9b10925b2223b856e38ad83ea882783f15a81c2d))
11+
* **api:** move node to typescript generator ([8b451fa](https://github.com/Finch-API/finch-api-node/commit/8b451fad2a4cfbf889ee2328a21a06410c701f05))
12+
* **api:** update automated code reviewer selection ([3efe149](https://github.com/Finch-API/finch-api-node/commit/3efe14978551eab609d6cfc5c957c7ffcbc3b665))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([15b0925](https://github.com/Finch-API/finch-api-node/commit/15b0925769ad8dc86843fc54415679dfe3ee9d9e))
14+
15+
16+
### Bug Fixes
17+
18+
* **mcp:** return tool execution error on jq failure ([0f89fa9](https://github.com/Finch-API/finch-api-node/commit/0f89fa9e93857137069b63fffdc7b69d427fb4fa))
19+
20+
21+
### Chores
22+
23+
* **internal:** codegen related update ([bf9ac12](https://github.com/Finch-API/finch-api-node/commit/bf9ac12cdfbbd400a5ea24c519270c17f02a4a11))
24+
* **internal:** codegen related update ([bfc9748](https://github.com/Finch-API/finch-api-node/commit/bfc97480ca11cc3f9335d986f77b9b093f2fbab0))
25+
* mcp code tool explicit error message when missing a run function ([9a37099](https://github.com/Finch-API/finch-api-node/commit/9a370999b629990fbd882480f74bcb58feb04526))
26+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([9d092be](https://github.com/Finch-API/finch-api-node/commit/9d092be119c7819135e3060c454dd004da9e9f39))
27+
* **mcp:** add line numbers to code tool errors ([b6481c1](https://github.com/Finch-API/finch-api-node/commit/b6481c1e1885fa8e656a0fe393ed7f44d232a3e5))
28+
* **mcp:** clarify http auth error ([9e163a5](https://github.com/Finch-API/finch-api-node/commit/9e163a5585727cce550a509c1e1ef036254baf37))
29+
* **mcp:** upgrade jq-web ([93a70ac](https://github.com/Finch-API/finch-api-node/commit/93a70ac925fc51ee04d4ec48f8b1c16055b429b3))
30+
* sync repo ([5d7c6e4](https://github.com/Finch-API/finch-api-node/commit/5d7c6e49590b017ad7150d0c2af93ff7e79291dd))
31+
32+
33+
### Documentation
34+
35+
* **mcp:** add a README button for one-click add to Cursor ([348d6ea](https://github.com/Finch-API/finch-api-node/commit/348d6ea51d83df23e58b290f18f16f0e84e28048))
36+
* **mcp:** add a README link to add server to VS Code or Claude Code ([ea47f6c](https://github.com/Finch-API/finch-api-node/commit/ea47f6caa79a401d536f5c66396a3e29ecfba036))
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)