Claude-skill-registry deepwiki
Query DeepWiki for repository documentation and structure. Use to understand open source projects, find API docs, and explore codebases.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/deepwiki" ~/.claude/skills/majiayu000-claude-skill-registry-deepwiki && rm -rf "$T"
manifest:
skills/data/deepwiki/SKILL.mdsource content
DeepWiki - Repository Documentation
Query DeepWiki for AI-generated documentation about any public GitHub repository.
Overview
DeepWiki (deepwiki.com) provides AI-generated documentation for GitHub repositories, including:
- Repository structure and architecture
- API documentation
- Code explanations
- Interactive diagrams
Quick Start
URL Pattern: Replace
github.com with deepwiki.com in any repo URL:
→github.com/vercel/next.jsdeepwiki.com/vercel/next.js
MCP Server Setup
DeepWiki provides a free MCP server with no authentication required for public repos.
Add to Claude Code (one-time setup)
claude mcp add -s user -t http deepwiki https://mcp.deepwiki.com/mcp
For Cursor/Windsurf
Add to your MCP config:
{ "mcpServers": { "deepwiki": { "serverUrl": "https://mcp.deepwiki.com/sse" } } }
Available MCP Tools
Once configured, these tools become available:
| Tool | Purpose |
|---|---|
| Get documentation topics/structure for a repo |
| Retrieve actual documentation content |
| Ask AI-powered questions about the repo |
Usage Examples
Via WebFetch (works immediately)
# Fetch documentation overview WebFetch https://deepwiki.com/owner/repo "Summarize the architecture" # Example WebFetch https://deepwiki.com/vercel/next.js "How does routing work?"
Via MCP (after setup)
Use the MCP tools directly:
- Get repo structuremcp__deepwiki__read_wiki_structure
- Get documentationmcp__deepwiki__read_wiki_contents
- Ask questionsmcp__deepwiki__ask_question
Fallback: GitHub + AI
If DeepWiki lacks coverage for a repo, use GitHub API:
Get Repository Overview
gh api repos/owner/repo | jq '{description, language, topics, stars: .stargazers_count}'
Get README
gh api repos/owner/repo/readme --jq '.content' | base64 -d
Get File Structure
gh api repos/owner/repo/git/trees/main?recursive=1 | \ jq -r '.tree[] | select(.type == "blob") | .path' | head -50
Wire Protocols
Two protocols are supported:
- SSE at
- Official MCP spechttps://mcp.deepwiki.com/sse - HTTP at
- Cloudflare/OpenAI compatiblehttps://mcp.deepwiki.com/mcp
Best Practices
- Use WebFetch first - Works without MCP setup
- Check if repo is indexed - Popular repos have better coverage
- Ask specific questions - DeepWiki excels at targeted queries
- Fall back to GitHub - For unindexed or private repos
Limitations
- Public repos only - Private repos require Devin account
- Coverage varies - 50,000+ popular repos indexed
- No authentication - Can't access private documentation