Skip to content

Commit 2207675

Browse files
release: 0.1.0-alpha.17
1 parent 0a1a88d commit 2207675

6 files changed

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

CHANGELOG.md

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

3+
## 0.1.0-alpha.17 (2026-01-06)
4+
5+
Full Changelog: [v0.1.0-alpha.16...v0.1.0-alpha.17](https://github.com/Scan-Documents/node-sdk/compare/v0.1.0-alpha.16...v0.1.0-alpha.17)
6+
7+
### ⚠ BREAKING CHANGES
8+
9+
* **mcp:** remove deprecated tool schemes
10+
* **mcp:** **Migration:** To migrate, simply modify the command used to invoke the MCP server. Currently, the only supported tool scheme is code mode. Now, starting the server with just `node /path/to/mcp/server` or `npx package-name` will invoke code tools: changing your command to one of these is likely all you will need to do.
11+
12+
### Bug Fixes
13+
14+
* **mcp:** correct code tool api output types ([5b24467](https://github.com/Scan-Documents/node-sdk/commit/5b24467a6ff8b924a4dd94a833c0e972eb8a07db))
15+
16+
17+
### Chores
18+
19+
* **internal:** codegen related update ([9126131](https://github.com/Scan-Documents/node-sdk/commit/9126131d06457c843109fd0967430b5101b2e8ff))
20+
* **mcp:** remove deprecated tool schemes ([49f084c](https://github.com/Scan-Documents/node-sdk/commit/49f084c05786fa386b8da397fce4aa20c92c473f))
21+
22+
23+
### Documentation
24+
25+
* prominently feature MCP server setup in root SDK readmes ([8e89817](https://github.com/Scan-Documents/node-sdk/commit/8e898172af49f292ea7cbad4b674ff4fbc6975cd))
26+
327
## 0.1.0-alpha.16 (2025-12-18)
428

529
Full Changelog: [v0.1.0-alpha.15...v0.1.0-alpha.16](https://github.com/Scan-Documents/node-sdk/compare/v0.1.0-alpha.15...v0.1.0-alpha.16)

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.16",
3+
"version": "0.1.0-alpha.17",
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.16",
3+
"version": "0.1.0-alpha.17",
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
@@ -21,7 +21,7 @@ export const newMcpServer = () =>
2121
new McpServer(
2222
{
2323
name: 'scan_documents_api',
24-
version: '0.1.0-alpha.16',
24+
version: '0.1.0-alpha.17',
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 = '0.1.0-alpha.16'; // x-release-please-version
1+
export const VERSION = '0.1.0-alpha.17'; // x-release-please-version

0 commit comments

Comments
 (0)