Skip to content

Commit 534d88d

Browse files
release: 0.1.0-alpha.26
1 parent 7e3fddb commit 534d88d

6 files changed

Lines changed: 17 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-
".": "0.1.0-alpha.25"
2+
".": "0.1.0-alpha.26"
33
}

CHANGELOG.md

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

3+
## 0.1.0-alpha.26 (2026-02-14)
4+
5+
Full Changelog: [v0.1.0-alpha.25...v0.1.0-alpha.26](https://github.com/Scan-Documents/node-sdk/compare/v0.1.0-alpha.25...v0.1.0-alpha.26)
6+
7+
### Chores
8+
9+
* **internal:** add health check to MCP server when running in HTTP mode ([26bf884](https://github.com/Scan-Documents/node-sdk/commit/26bf884a9c1266ba85bb0ba8d6a1c869a3118c21))
10+
* **internal:** allow basic filtering of methods allowed for MCP code mode ([ba76545](https://github.com/Scan-Documents/node-sdk/commit/ba76545b0fe120e1a1f0b440535a0e2eb3c4c8bc))
11+
* **internal:** always generate MCP server dockerfiles and upgrade associated dependencies ([39f408d](https://github.com/Scan-Documents/node-sdk/commit/39f408dd83c3d4fe6072b752e1b8b77f1a947ce5))
12+
* **internal:** avoid type checking errors with ts-reset ([ce842a2](https://github.com/Scan-Documents/node-sdk/commit/ce842a2cb07db7a37d48e67f247d9125e7b1c57a))
13+
* **mcp:** forward STAINLESS_API_KEY to docs search endpoint ([7e3fddb](https://github.com/Scan-Documents/node-sdk/commit/7e3fddb693b3a680d0367bf546fa4bf869de0878))
14+
315
## 0.1.0-alpha.25 (2026-02-06)
416

517
Full Changelog: [v0.1.0-alpha.24...v0.1.0-alpha.25](https://github.com/Scan-Documents/node-sdk/compare/v0.1.0-alpha.24...v0.1.0-alpha.25)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "scan-documents",
3-
"version": "0.1.0-alpha.25",
3+
"version": "0.1.0-alpha.26",
44
"description": "The official TypeScript library for the Scan Documents API",
55
"author": "Scan Documents <support@scan-documents.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": "scan-documents-mcp",
3-
"version": "0.1.0-alpha.25",
3+
"version": "0.1.0-alpha.26",
44
"description": "The official MCP Server for the Scan Documents API",
55
"author": "Scan Documents <support@scan-documents.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
@@ -58,7 +58,7 @@ export const newMcpServer = async () =>
5858
new McpServer(
5959
{
6060
name: 'scan_documents_api',
61-
version: '0.1.0-alpha.25',
61+
version: '0.1.0-alpha.26',
6262
},
6363
{
6464
instructions: await getInstructions(),

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '0.1.0-alpha.25'; // x-release-please-version
1+
export const VERSION = '0.1.0-alpha.26'; // x-release-please-version

0 commit comments

Comments
 (0)