@suzko/mcp-server 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +32 -0
- package/GUIDE.md +952 -0
- package/LICENSE +21 -0
- package/README.md +171 -0
- package/dist/bin/mcp-server.d.ts +11 -0
- package/dist/bin/mcp-server.js +108 -0
- package/dist/src/auth.d.ts +14 -0
- package/dist/src/auth.js +140 -0
- package/dist/src/client.d.ts +18 -0
- package/dist/src/client.js +78 -0
- package/dist/src/index.d.ts +8 -0
- package/dist/src/index.js +44 -0
- package/dist/src/prompts/index.d.ts +5 -0
- package/dist/src/prompts/index.js +87 -0
- package/dist/src/resources/index.d.ts +7 -0
- package/dist/src/resources/index.js +86 -0
- package/dist/src/security.d.ts +18 -0
- package/dist/src/security.js +108 -0
- package/dist/src/tools/account.d.ts +3 -0
- package/dist/src/tools/account.js +254 -0
- package/dist/src/tools/deploy.d.ts +3 -0
- package/dist/src/tools/deploy.js +468 -0
- package/dist/src/tools/dns.d.ts +3 -0
- package/dist/src/tools/dns.js +313 -0
- package/dist/src/tools/domains.d.ts +3 -0
- package/dist/src/tools/domains.js +499 -0
- package/dist/src/tools/server-admin.d.ts +3 -0
- package/dist/src/tools/server-admin.js +738 -0
- package/dist/src/tools/services.d.ts +3 -0
- package/dist/src/tools/services.js +181 -0
- package/dist/src/tools/support.d.ts +3 -0
- package/dist/src/tools/support.js +259 -0
- package/package.json +57 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to `@suzko/mcp-server` will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [0.1.0] - 2026-05-14
|
|
9
|
+
|
|
10
|
+
Initial public preview release.
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- 57 MCP tools across 7 categories:
|
|
15
|
+
- **Deploy** (12) — templates, projects, logs, build logs, redeploy, env, subdomain, usage
|
|
16
|
+
- **Domains** (12) — search, register, transfer, list, nameservers, lock
|
|
17
|
+
- **DNS** (5) — record CRUD covering A/AAAA/CNAME/TXT/MX/NS/SRV/CAA
|
|
18
|
+
- **Account** (7) — info, invoices, subscriptions, perks, orders, balance
|
|
19
|
+
- **Services** (4) — list, details, SSO, upgrade guidance
|
|
20
|
+
- **Support** (5) — ticket CRUD + replies
|
|
21
|
+
- **Server Admin** (12) — BYOS connect, inspect, exec, docker, SSL, env
|
|
22
|
+
- 5 read-only MCP resources via `suzko://` URI scheme
|
|
23
|
+
- Workflow prompts for common tasks
|
|
24
|
+
- CLI commands: `auth login | status | logout | help`
|
|
25
|
+
- Device-token auth with auto-refresh (shared with desktop/mobile)
|
|
26
|
+
- Two-step cost confirmation for destructive/billed operations
|
|
27
|
+
- Credentials stored at `~/.suzko/mcp-credentials.json` (mode 0600, parent dir 0700 on Unix)
|
|
28
|
+
|
|
29
|
+
### Compatibility
|
|
30
|
+
|
|
31
|
+
- Node.js 18+
|
|
32
|
+
- VS Code Copilot (agent mode), Claude Desktop, Claude Code CLI, Cursor, Windsurf
|