@dzhechkov/mcp-server-tools
v0.2.4
Published
MCP server exposing DZ harness operations (skill list/get/compile, harness verify) over stdio.
Maintainers
Readme
@dzhechkov/mcp-server-tools
An MCP server that exposes the DZ cross-platform harness as Model Context Protocol tools, so any MCP client can drive the harness without the CLI.
Tools
| Tool | Purpose |
|---|---|
| skill_list | List the skills in the configured skills directory |
| skill_get | Read one skill's SKILL.md and parsed frontmatter |
| skill_compile | Compile a skill for a target platform (claude / codex / opencode / hermes) |
| harness_verify | Compile + structurally verify a skill for a platform |
Configuration
The server reads skills from DZ_SKILLS_DIR (an environment variable),
defaulting to .claude/skills relative to the working directory.
Usage — register with Claude Code
Add to your project's .mcp.json:
{
"mcpServers": {
"dz-harness": {
"command": "dz-mcp-server-tools",
"env": { "DZ_SKILLS_DIR": ".claude/skills" }
}
}
}Transport is stdio. The server is also importable — createDzMcpServer()
returns a configured McpServer for embedding or testing.
Status
0.1.0 — alpha, part of the extended-a-migration feature (Phase 5).
