Skip to content

Commit 414a95d

Browse files
release: 7.0.0
1 parent 9219569 commit 414a95d

File tree

6 files changed

+48
-5
lines changed

6 files changed

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

3+
## 7.0.0 (2025-12-01)
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 ([fe699d2](https://github.com/Finch-API/finch-api-node/commit/fe699d25e586ad18f7357aafa29ce0f69f9e3b42))
10+
* **api:** api update ([11a152a](https://github.com/Finch-API/finch-api-node/commit/11a152aeda62a4f68ecff2ae1c321015f7165e78))
11+
* **api:** api update ([8b2bf69](https://github.com/Finch-API/finch-api-node/commit/8b2bf69329d70adc2bf1f03a1d355cd1b184e0ed))
12+
* **api:** manual updates ([11cb2e6](https://github.com/Finch-API/finch-api-node/commit/11cb2e6d5a50adef59a1097c12b1a6d6a6b8d6af))
13+
* **api:** move node to typescript generator ([0df232b](https://github.com/Finch-API/finch-api-node/commit/0df232b441a30ffae5ecf2cf1284c2a1eeef8c4e))
14+
* **api:** update automated code reviewer selection ([901716d](https://github.com/Finch-API/finch-api-node/commit/901716df322e076de7cf981b433ccbe5afddf7e5))
15+
* **mcp:** add detail field to docs search tool ([9ae0ad1](https://github.com/Finch-API/finch-api-node/commit/9ae0ad1098256ae13b1e9ca69ce400db218bd552))
16+
* **mcp:** enable optional code execution tool on http mcp servers ([dd4b66d](https://github.com/Finch-API/finch-api-node/commit/dd4b66da258ec623025e257695dcc0fc3d148c03))
17+
18+
19+
### Bug Fixes
20+
21+
* **api:** migrate custom code to TypeScript ([05187f4](https://github.com/Finch-API/finch-api-node/commit/05187f46501e842358fe1f789d17ea85157d42bc))
22+
* **api:** resolve build issues ([69a547a](https://github.com/Finch-API/finch-api-node/commit/69a547aa1f8e1722d790b4e1af4df6fe2a8f89b8))
23+
* **java:** Resolve name collisions ([490621c](https://github.com/Finch-API/finch-api-node/commit/490621c1d8f08ead169c3e79206f02b6c56a643a))
24+
* **mcp:** return tool execution error on jq failure ([42bb660](https://github.com/Finch-API/finch-api-node/commit/42bb660b52138b95583d7afd2de7b746eed3cbf8))
25+
* **tests:** fix tests ([d304c64](https://github.com/Finch-API/finch-api-node/commit/d304c64c1aad15c4c77ac31773afff6edc061b06))
26+
27+
28+
### Chores
29+
30+
* **client:** fix logger property type ([9219569](https://github.com/Finch-API/finch-api-node/commit/92195691476dc51f2aff4f06ceec699e2edaa925))
31+
* **internal:** codegen related update ([cbcb857](https://github.com/Finch-API/finch-api-node/commit/cbcb857f5cfc41edfc3dd0ff23b03710a8aa4451))
32+
* **internal:** codegen related update ([47ccb70](https://github.com/Finch-API/finch-api-node/commit/47ccb701014e1ecc894b86f023aafcfe0b2e1bd1))
33+
* mcp code tool explicit error message when missing a run function ([e09e5c5](https://github.com/Finch-API/finch-api-node/commit/e09e5c5f9bc6c73e490ce992596e26524fc8c49c))
34+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([d38e8aa](https://github.com/Finch-API/finch-api-node/commit/d38e8aa87769625f8fe80a0ea1d107b12d702600))
35+
* **mcp:** add line numbers to code tool errors ([2e3d713](https://github.com/Finch-API/finch-api-node/commit/2e3d713a0c9f63cd0e64d51ab7a7dba09e3467c0))
36+
* **mcp:** clarify http auth error ([2ff1724](https://github.com/Finch-API/finch-api-node/commit/2ff1724370e859c751f17e52ef3d6e04114e5de0))
37+
* **mcp:** upgrade jq-web ([1c03ace](https://github.com/Finch-API/finch-api-node/commit/1c03ace703920f5ae072f83212cb81299e15e6cc))
38+
* sync repo ([3c55f42](https://github.com/Finch-API/finch-api-node/commit/3c55f426544f8a024859ce1fc2c58d99f9220cda))
39+
40+
41+
### Documentation
42+
43+
* **mcp:** add a README button for one-click add to Cursor ([2f40bfc](https://github.com/Finch-API/finch-api-node/commit/2f40bfc7f0c220fa7773043313cd3dda7b500419))
44+
* **mcp:** add a README link to add server to VS Code or Claude Code ([f8a1974](https://github.com/Finch-API/finch-api-node/commit/f8a19747318f5582e02c264ca0c93c16813cf13b))
45+
346
## 6.38.0 (2025-10-27)
447

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