deepwiki
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseDeepWiki
DeepWiki
Overview
概述
The DeepWiki skill uses the mcporter CLI to query DeepWiki’s public
repository documentation endpoint. Suitable for exploring a GitHub repo:
listing documentation topics, reading documentation content, and asking
questions about the codebase.
Endpoint:
text
https://mcp.deepwiki.com/mcpDeepWiki skill 使用mcporter CLI查询DeepWiki的公开仓库文档端点。适用于探索GitHub仓库:列出文档主题、阅读文档内容,以及针对代码库提出问题。
端点:
text
https://mcp.deepwiki.com/mcpWorkflow
工作流程
Step 1: Inspect tool signatures
步骤1:查看工具签名
List available tools and their parameters:
bash
bunx mcporter list https://mcp.deepwiki.com/mcp --all-parameters列出可用工具及其参数:
bash
bunx mcporter list https://mcp.deepwiki.com/mcp --all-parametersStep 2: List documentation topics
步骤2:列出文档主题
bash
bunx mcporter call https://mcp.deepwiki.com/mcp.read_wiki_structure \
repoName:owner/repoParameters:
- (required): GitHub repository in
repoNameformat.owner/repo
bash
bunx mcporter call https://mcp.deepwiki.com/mcp.read_wiki_structure \
repoName:owner/repo参数:
- (必填):格式为
repoName的GitHub仓库。owner/repo
Step 3: Read documentation content
步骤3:阅读文档内容
bash
bunx mcporter call https://mcp.deepwiki.com/mcp.read_wiki_contents \
repoName:owner/repoParameters:
- (required): GitHub repository in
repoNameformat.owner/repo
bash
bunx mcporter call https://mcp.deepwiki.com/mcp.read_wiki_contents \
repoName:owner/repo参数:
- (必填):格式为
repoName的GitHub仓库。owner/repo
Step 4: Ask a repo question
步骤4:针对仓库提出问题
bash
bunx mcporter call https://mcp.deepwiki.com/mcp.ask_question \
repoName:owner/repo \
question:"How does the routing layer work?"Parameters:
- (required): GitHub repository in
repoNameformat.owner/repo - (required): The question to answer about the repo.
question
bash
bunx mcporter call https://mcp.deepwiki.com/mcp.ask_question \
repoName:owner/repo \
question:"How does the routing layer work?"参数:
- (必填):格式为
repoName的GitHub仓库。owner/repo - (必填):针对仓库提出的问题。
question
Examples
示例
List topics for React
列出React的文档主题
bash
bunx mcporter call https://mcp.deepwiki.com/mcp.read_wiki_structure \
repoName:facebook/reactbash
bunx mcporter call https://mcp.deepwiki.com/mcp.read_wiki_structure \
repoName:facebook/reactRead documentation for React
阅读React的文档
bash
bunx mcporter call https://mcp.deepwiki.com/mcp.read_wiki_contents \
repoName:facebook/reactbash
bunx mcporter call https://mcp.deepwiki.com/mcp.read_wiki_contents \
repoName:facebook/reactAsk a question about React
针对React提出问题
bash
bunx mcporter call https://mcp.deepwiki.com/mcp.ask_question \
repoName:facebook/react \
question:"How is the rendering pipeline structured?"bash
bunx mcporter call https://mcp.deepwiki.com/mcp.ask_question \
repoName:facebook/react \
question:"How is the rendering pipeline structured?"Tips
提示
- Always start with to confirm parameter names and defaults.
mcporter list - Use precise, repo-specific questions for better answers.
- Only public GitHub repositories are supported.
- 始终先使用确认参数名称和默认值。
mcporter list - 使用精准的、针对仓库的问题以获得更好的答案。
- 仅支持公开GitHub仓库。