Skill Doc Generator
@DemboNauta
About Skill Doc Generator
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
Basic information
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"skill-doc-generator": {
"command": "npx",
"args": [
"skill-doc-generator"
]
}
}
}Tools
No tools detected
We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.
Overview
What is Skill Doc Generator?
Skill Doc Generator is an MCP server that converts any documentation URL into a Claude Code skill file and bundles the full skill‑creator workflow. It requires no API key and works with any MCP‑compatible IDE (Claude Code, Cursor, Windsurf, etc.).
How to use Skill Doc Generator?
Install directly from npm with Node.js 18+. Add it to your MCP config—either via claude mcp add --transport stdio --scope user skill-doc-generator npx skill-doc-generator or by adding the JSON entry to your IDE’s MCP config file. Then ask your agent to generate a skill from a documentation URL or GitHub repository. Tools include fetch_doc_page, fetch_github_repo, save_skill, read_skill, and get_skill_creator.
Key features of Skill Doc Generator
- Fetches documentation pages and strips non‑content elements.
- Fetches GitHub repository files via the GitHub API.
- Saves generated skills as markdown files ready for Claude Code.
- Bundles the complete skill‑creator workflow for testing and iteration.
- No external AI API calls are made inside the server.
Use cases of Skill Doc Generator
- Generate a Claude Code skill from any documentation URL (e.g., Laravel, Stripe, Python asyncio).
- Create a skill from a GitHub repository’s README, docs, and examples.
- Update an existing skill with the latest documentation changes.
- Build or improve skills using the built‑in skill‑creator workflow (draft → test → grade → iterate).
FAQ from Skill Doc Generator
Does Skill Doc Generator require an API key?
No. The server itself never calls external AI APIs; all reasoning is done by the AI agent. No API key is needed.
What runtime dependencies does Skill Doc Generator need?
Node.js 18+ and an MCP‑compatible agentic IDE (Claude Code, Cursor, Windsurf, or VS Code with Copilot).
How can I avoid rate limits when fetching GitHub repos?
Set the GITHUB_TOKEN environment variable. The fetch_github_repo tool uses the GitHub API, and a token helps avoid rate limits.
Where are generated skills saved?
By default, skills are saved to ~/.claude/skills/. You can specify a custom output_dir when using save_skill.
What transport does Skill Doc Generator use?
It connects using stdio transport, as shown in the installation commands.
More Developer Tools MCP servers
test
prysmaticlabsGo implementation of Ethereum proof of stake
Hello World MCP Server (Reference Extension)
anthropicsDesktop Extensions: One-click local MCP server installation in desktop apps
sentry-mcp
getsentryAn MCP server for interacting with Sentry via LLMs.
test
harlancA simple,high performance and secure live media server in pure Rust (RTMP[cluster]/RTSP/WebRTC[whip/whep]/HTTP-FLV/HLS).🦀
Stakpak Agent CLI
stakpakShip your code, on autopilot. An open source agent that lives on your machines 24/7 and keeps your apps running. 🦀
Comments