Skip to content

Commit 7106f00

Browse files
release: 8.2.1
1 parent 78d31fd commit 7106f00

File tree

6 files changed

+15
-5
lines changed

6 files changed

+15
-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-
".": "8.2.0"
2+
".": "8.2.1"
33
}

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## 8.2.1 (2026-01-14)
4+
5+
Full Changelog: [v8.2.0...v8.2.1](https://github.com/Finch-API/finch-api-node/compare/v8.2.0...v8.2.1)
6+
7+
### Chores
8+
9+
* **mcp:** add intent param to execute tool ([167089e](https://github.com/Finch-API/finch-api-node/commit/167089ee6f1bf45a22a902bd24c60399d7d165af))
10+
* **mcp:** pass intent param to execute handler ([78d31fd](https://github.com/Finch-API/finch-api-node/commit/78d31fd3ec977712f2b66816dd2a20f611bfa75f))
11+
* **mcp:** upgrade dependencies ([d16fb7c](https://github.com/Finch-API/finch-api-node/commit/d16fb7c18616ff555327e58c45f68a1286a1595e))
12+
313
## 8.2.0 (2026-01-13)
414

515
Full Changelog: [v8.1.1...v8.2.0](https://github.com/Finch-API/finch-api-node/compare/v8.1.1...v8.2.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": "8.2.0",
3+
"version": "8.2.1",
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": "8.2.0",
3+
"version": "8.2.1",
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
@@ -21,7 +21,7 @@ export const newMcpServer = () =>
2121
new McpServer(
2222
{
2323
name: 'tryfinch_finch_api_api',
24-
version: '8.2.0',
24+
version: '8.2.1',
2525
},
2626
{ capabilities: { tools: {}, logging: {} } },
2727
);

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '8.2.0'; // x-release-please-version
1+
export const VERSION = '8.2.1'; // x-release-please-version

0 commit comments

Comments
 (0)