DPS-Superskills-MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| MCP_SAFE_MODE | No | Enable safe mode for security policies | true |
| STORAGE_DRIVER | No | Storage driver (fs or redis) | fs |
| MCP_SKILLS_PATH | No | Custom path to skills directory (defaults to docs/DPS-superskills-v5.2.1) | |
| TRANSPORT_DRIVER | No | Transport driver (stdio or http) | stdio |
| MCP_PLUGIN_ALLOWLIST | No | Comma-separated list of allowed plugins | system.tool.js,skills.tool.js |
| MCP_ENABLE_SKILL_RESOURCES | No | Enable skill resources (set to false to disable) | true |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| skill_listA | List all available DPS SuperSkills v5.2.1 skills with their descriptions and register (DISCIPLINE / TECHNIQUE / KNOWLEDGE LAYER / REFERENCE). Use this first to discover which skill to invoke. |
| skill_readA | Return the full SKILL.md content for a specific DPS SuperSkill. Use when you need the raw, complete skill definition including all examples and pressure tests. For a structured executable workflow, use skill_run instead. |
| skill_runA | Invoke a DPS SuperSkill v5.2.1 with your task context. Returns a structured workflow response: ANNOUNCE statement, GOAL, CONSTRAINTS, CHECKLIST (ready to execute), OUTPUT TEMPLATE (pre-labeled), active GOTCHAS with do-instead guidance, and NANO REFERENCE. Tip: Run skill_list first if unsure which skill to use. Run complexity-gate before other skills for software tasks. |
| super_mcp_pattern_debtA | Read-only report of documented pattern-debt items, implementation gates, and runtime guards. |
| super_mcp_pingA | Ping server để kiểm tra trạng thái và pipeline middlewares. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 5 tools
Each tool has a clearly distinct purpose: listing skills, reading full definitions, running skills with workflow, checking pattern debt, and pinging server status. No overlap in functionality.
All tool names follow snake_case with a consistent prefix per group: 'skill_' for core skill operations and 'super_mcp_' for server utilities. The pattern is predictable and uniform.
With 5 tools, the server is well-scoped for its purpose of managing and invoking DPS SuperSkills. Each tool covers an essential operation without bloat or deficiency.
The tool surface covers the full lifecycle expected for a skills server: discovery (list), full definition retrieval (read), execution (run), plus supporting utilities for debt management and health check. No obvious gaps.