Skip to content

Commit fa85ef0

Browse files
release: 0.1.0-alpha.24
1 parent f34ef39 commit fa85ef0

File tree

6 files changed

+21
-5
lines changed

6 files changed

+21
-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-
".": "0.1.0-alpha.23"
2+
".": "0.1.0-alpha.24"
33
}

CHANGELOG.md

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

3+
## 0.1.0-alpha.24 (2026-02-05)
4+
5+
Full Changelog: [v0.1.0-alpha.23...v0.1.0-alpha.24](https://github.com/Scan-Documents/node-sdk/compare/v0.1.0-alpha.23...v0.1.0-alpha.24)
6+
7+
### Features
8+
9+
* **mcp:** add initial server instructions ([545558c](https://github.com/Scan-Documents/node-sdk/commit/545558ca367fe51539cc04cc1bac5f49c531ae05))
10+
11+
12+
### Chores
13+
14+
* **client:** do not parse responses with empty content-length ([1389823](https://github.com/Scan-Documents/node-sdk/commit/13898230806689632adc8f9fa1d6e825fbade837))
15+
* **client:** restructure abort controller binding ([e4ce7a1](https://github.com/Scan-Documents/node-sdk/commit/e4ce7a161f0a5dc78ac1e553651d9869a671c16b))
16+
* **internal:** refactor flag parsing for MCP servers and add debug flag ([d014b64](https://github.com/Scan-Documents/node-sdk/commit/d014b645e45683609ef7d82561126cff1ca2bfe3))
17+
* **internal:** support oauth authorization code flow for MCP servers ([ce96b0c](https://github.com/Scan-Documents/node-sdk/commit/ce96b0c6cdee3c08414ccbe9d7eda138802e1e49))
18+
319
## 0.1.0-alpha.23 (2026-02-03)
420

521
Full Changelog: [v0.1.0-alpha.22...v0.1.0-alpha.23](https://github.com/Scan-Documents/node-sdk/compare/v0.1.0-alpha.22...v0.1.0-alpha.23)

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.23",
3+
"version": "0.1.0-alpha.24",
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.23",
3+
"version": "0.1.0-alpha.24",
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
@@ -57,7 +57,7 @@ export const newMcpServer = async () =>
5757
new McpServer(
5858
{
5959
name: 'scan_documents_api',
60-
version: '0.1.0-alpha.23',
60+
version: '0.1.0-alpha.24',
6161
},
6262
{
6363
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.23'; // x-release-please-version
1+
export const VERSION = '0.1.0-alpha.24'; // x-release-please-version

0 commit comments

Comments
 (0)