Skip to content

Commit 49fba6b

Browse files
release: 0.1.0-alpha.27
1 parent c4c0fe6 commit 49fba6b

7 files changed

Lines changed: 27 additions & 8 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.26"
2+
".": "0.1.0-alpha.27"
33
}

CHANGELOG.md

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

3+
## 0.1.0-alpha.27 (2026-02-24)
4+
5+
Full Changelog: [v0.1.0-alpha.26...v0.1.0-alpha.27](https://github.com/Scan-Documents/node-sdk/compare/v0.1.0-alpha.26...v0.1.0-alpha.27)
6+
7+
### Bug Fixes
8+
9+
* **docs/contributing:** correct pnpm link command ([22a40f6](https://github.com/Scan-Documents/node-sdk/commit/22a40f6d1b1c7013d4c8ef7ebe75e4b9311c3dd9))
10+
11+
12+
### Chores
13+
14+
* **internal:** remove mock server code ([ba40172](https://github.com/Scan-Documents/node-sdk/commit/ba40172e70c700b7f655a6ea5c4e080850edb622))
15+
* **mcp:** correctly update version in sync with sdk ([9fa85a0](https://github.com/Scan-Documents/node-sdk/commit/9fa85a036dc92960188e5c730deab1abb4c05a0d))
16+
* update mock server docs ([6e37ffa](https://github.com/Scan-Documents/node-sdk/commit/6e37ffa38709b41df6c5e089325eb6a367fc155f))
17+
318
## 0.1.0-alpha.26 (2026-02-20)
419

520
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)

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.26",
3+
"version": "0.1.0-alpha.27",
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/manifest.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"dxt_version": "0.2",
33
"name": "scan-documents-mcp",
4-
"version": "0.1.0-alpha.5",
4+
"version": "0.1.0-alpha.27",
55
"description": "The official MCP Server for the Scan Documents API",
66
"author": {
77
"name": "Scan Documents",
@@ -18,7 +18,9 @@
1818
"entry_point": "index.js",
1919
"mcp_config": {
2020
"command": "node",
21-
"args": ["${__dirname}/index.js"],
21+
"args": [
22+
"${__dirname}/index.js"
23+
],
2224
"env": {
2325
"SCAN_DOCUMENTS_API_KEY": "${user_config.SCAN_DOCUMENTS_API_KEY}"
2426
}
@@ -39,5 +41,7 @@
3941
"node": ">=18.0.0"
4042
}
4143
},
42-
"keywords": ["api"]
44+
"keywords": [
45+
"api"
46+
]
4347
}

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.26",
3+
"version": "0.1.0-alpha.27",
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.26',
23+
version: '0.1.0-alpha.27',
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.26'; // x-release-please-version
1+
export const VERSION = '0.1.0-alpha.27'; // x-release-please-version

0 commit comments

Comments
 (0)