← ClaudeAtlas

researching-with-deepwikilisted

Research GitHub, GitLab, and Bitbucket repositories using DeepWiki MCP server. Use when exploring unfamiliar codebases, understanding project architecture, or asking questions about how a specific open-source project works. Provides AI-powered repo analysis and RAG-based Q&A about source code. NOT for fetching library API docs (use fetching-library-docs instead) or local files.
aiskillstore/marketplace · ★ 329 · AI & Automation · score 79
Install: claude install-skill aiskillstore/marketplace
# Researching with DeepWiki Research and understand codebases using the DeepWiki MCP server. ## MCP Server Setup Add to your Claude Code settings: ```bash claude mcp add -s user -t http deepwiki https://mcp.deepwiki.com/mcp ``` Or add to `settings.json`: ```json { "mcpServers": { "deepwiki": { "type": "http", "url": "https://mcp.deepwiki.com/mcp" } } } ``` ### Private Repositories For private repos, use the Devin.ai endpoint with authentication: ```json { "mcpServers": { "deepwiki": { "type": "http", "url": "https://mcp.devin.ai/deepwiki/mcp", "headers": { "Authorization": "Bearer YOUR_DEVIN_API_KEY" } } } } ``` --- ## When to Use DeepWiki | Scenario | Use DeepWiki? | |----------|---------------| | Exploring unfamiliar open-source codebase | Yes | | Understanding project architecture | Yes | | Finding how a feature is implemented | Yes | | Generating documentation for a repo | Yes | | Working with your own local code | No - use Glob/Grep | | Quick file lookups in known structure | No - use Read tool | --- ## Core Capabilities ### 1. Repository Analysis Ask DeepWiki to analyze any public repository: ``` "Analyze the architecture of github.com/vercel/next.js" "How is the routing system implemented in github.com/remix-run/react-router?" "What design patterns are used in github.com/anthropics/anthropic-sdk-python?" ``` ### 2.