Skip to content

Commit e04ab35

Browse files
release: 0.1.0-alpha.26
1 parent 63d1f7f commit e04ab35

6 files changed

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

3+
## 0.1.0-alpha.26 (2026-02-20)
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+
### Bug Fixes
8+
9+
* **mcp:** initialize SDK lazily to avoid failing the connection on init errors ([31216c9](https://github.com/Scan-Documents/node-sdk/commit/31216c9ecc5f1c5c93be18bba412434e52ca1436))
10+
11+
12+
### Chores
13+
14+
* **internal/client:** fix form-urlencoded requests ([ef09701](https://github.com/Scan-Documents/node-sdk/commit/ef09701d91d9053eb38867038e1f5ca8920d2311))
15+
* **internal:** add health check to MCP server when running in HTTP mode ([26bf884](https://github.com/Scan-Documents/node-sdk/commit/26bf884a9c1266ba85bb0ba8d6a1c869a3118c21))
16+
* **internal:** allow basic filtering of methods allowed for MCP code mode ([ba76545](https://github.com/Scan-Documents/node-sdk/commit/ba76545b0fe120e1a1f0b440535a0e2eb3c4c8bc))
17+
* **internal:** allow setting x-stainless-api-key header on mcp server requests ([ae7615e](https://github.com/Scan-Documents/node-sdk/commit/ae7615e4bd12019216d8c31e4b41151e97904822))
18+
* **internal:** always generate MCP server dockerfiles and upgrade associated dependencies ([39f408d](https://github.com/Scan-Documents/node-sdk/commit/39f408dd83c3d4fe6072b752e1b8b77f1a947ce5))
19+
* **internal:** avoid type checking errors with ts-reset ([ce842a2](https://github.com/Scan-Documents/node-sdk/commit/ce842a2cb07db7a37d48e67f247d9125e7b1c57a))
20+
* **internal:** cache fetch instruction calls in MCP server ([b190601](https://github.com/Scan-Documents/node-sdk/commit/b1906016a3cbc47f8df082bcee8a15cc67e2b603))
21+
* **internal:** improve layout of generated MCP server files ([cc9d57d](https://github.com/Scan-Documents/node-sdk/commit/cc9d57d4970686cb404382f9ebe67b89085e131d))
22+
* **mcp:** forward STAINLESS_API_KEY to docs search endpoint ([7e3fddb](https://github.com/Scan-Documents/node-sdk/commit/7e3fddb693b3a680d0367bf546fa4bf869de0878))
23+
324
## 0.1.0-alpha.25 (2026-02-06)
425

526
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
@@ -20,7 +20,7 @@ export const newMcpServer = async (stainlessApiKey: string | undefined) =>
2020
new McpServer(
2121
{
2222
name: 'scan_documents_api',
23-
version: '0.1.0-alpha.25',
23+
version: '0.1.0-alpha.26',
2424
},
2525
{
2626
instructions: await getInstructions(stainlessApiKey),

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)