Skip to content

Commit fee277f

Browse files
release: 7.0.0
1 parent 9afec9a commit fee277f

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 ([7cb2c65](https://github.com/Finch-API/finch-api-node/commit/7cb2c6586171458beb0694860065bea665b8beb4))
10+
* **api:** api update ([ec646a6](https://github.com/Finch-API/finch-api-node/commit/ec646a6349efddc92d79393d929ddef6ba25345d))
11+
* **api:** move node to typescript generator ([6394606](https://github.com/Finch-API/finch-api-node/commit/6394606ff4db39577925f38e7bfa0bcc3958d356))
12+
* **api:** update automated code reviewer selection ([7042ccc](https://github.com/Finch-API/finch-api-node/commit/7042ccc37ab01818149f48dfa6eb14437958c41d))
13+
* **mcp:** enable optional code execution tool on http mcp servers ([bf6ee25](https://github.com/Finch-API/finch-api-node/commit/bf6ee254c4e5aa248010dbf9f0c889b6b42d4ab2))
14+
15+
16+
### Bug Fixes
17+
18+
* **api:** migrate custom code to TypeScript ([edda752](https://github.com/Finch-API/finch-api-node/commit/edda7523b7164e6eb59bcf33a4234c4f93f707b4))
19+
* **api:** resolve build issues ([dc76656](https://github.com/Finch-API/finch-api-node/commit/dc766560cbd706349be6da8ad8346b96582b75bc))
20+
* **mcp:** return tool execution error on jq failure ([0026693](https://github.com/Finch-API/finch-api-node/commit/002669339901e6755534ec15430a054eb6d7437f))
21+
* **tests:** fix tests ([9afec9a](https://github.com/Finch-API/finch-api-node/commit/9afec9a548311849a26a41fb9b6f62fc528e0416))
22+
23+
24+
### Chores
25+
26+
* **internal:** codegen related update ([6384020](https://github.com/Finch-API/finch-api-node/commit/6384020538addd3d3bdcad519b5f30404af585a7))
27+
* **internal:** codegen related update ([fd01332](https://github.com/Finch-API/finch-api-node/commit/fd01332792b83f2a95ca4156df3e6b003d7a25b7))
28+
* mcp code tool explicit error message when missing a run function ([0bfe1ef](https://github.com/Finch-API/finch-api-node/commit/0bfe1ef06d9690e647ce609096127c2fc5f6031b))
29+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([5fe9923](https://github.com/Finch-API/finch-api-node/commit/5fe9923e478b36659644173779e39ce391f6eec7))
30+
* **mcp:** add line numbers to code tool errors ([9385b6e](https://github.com/Finch-API/finch-api-node/commit/9385b6e047c42565926f6f5d64cb23c20bd4adc2))
31+
* **mcp:** clarify http auth error ([b5fe604](https://github.com/Finch-API/finch-api-node/commit/b5fe60498a90f61b3c0e4366e3cb354783053d58))
32+
* **mcp:** upgrade jq-web ([60c37e1](https://github.com/Finch-API/finch-api-node/commit/60c37e1e5498558c8f8a24b44e58d5e3576eddde))
33+
* sync repo ([f10bea9](https://github.com/Finch-API/finch-api-node/commit/f10bea9f386e7d1ffce2f6c2d7c2a35514b2891c))
34+
35+
36+
### Documentation
37+
38+
* **mcp:** add a README button for one-click add to Cursor ([4beae1a](https://github.com/Finch-API/finch-api-node/commit/4beae1afc3dc6783cfc02640d32e0a47ef13125d))
39+
* **mcp:** add a README link to add server to VS Code or Claude Code ([fabe588](https://github.com/Finch-API/finch-api-node/commit/fabe5880745bc60287f9a8396da8cf66cb0b59f9))
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)