MCP server that turns any documentation URL into a Claude Code skill file. No API key required — the agent does the reasoning, the server handles fetching and saving
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Claude Desktop
Claude Code
Cursor
Add to claude_desktop_config.json:
{
"mcpServers": {
"skill-doc-generator": {
"command": "npx",
"args": [
"-y",
"DemboNauta/skill-doc-generator"
]
}
}
}
📋 Copy
Run in terminal:
claude mcp add skill-doc-generator npx -y DemboNauta/skill-doc-generator
📋 Copy
Add to .cursor/mcp.json:
{
"mcpServers": {
"skill-doc-generator": {
"command": "npx",
"args": [
"-y",
"DemboNauta/skill-doc-generator"
]
}
}
}
📋 Copy