deepwiki

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

DeepWiki

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/mcp
DeepWiki skill 使用mcporter CLI查询DeepWiki的公开仓库文档端点。适用于探索GitHub仓库:列出文档主题、阅读文档内容,以及针对代码库提出问题。
端点:
text
https://mcp.deepwiki.com/mcp

Workflow

工作流程

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-parameters

Step 2: List documentation topics

步骤2:列出文档主题

bash
bunx mcporter call https://mcp.deepwiki.com/mcp.read_wiki_structure \
  repoName:owner/repo
Parameters:
  • repoName
    (required): GitHub repository in
    owner/repo
    format.
bash
bunx mcporter call https://mcp.deepwiki.com/mcp.read_wiki_structure \
  repoName:owner/repo
参数:
  • repoName
    (必填):格式为
    owner/repo
    的GitHub仓库。

Step 3: Read documentation content

步骤3:阅读文档内容

bash
bunx mcporter call https://mcp.deepwiki.com/mcp.read_wiki_contents \
  repoName:owner/repo
Parameters:
  • repoName
    (required): GitHub repository in
    owner/repo
    format.
bash
bunx mcporter call https://mcp.deepwiki.com/mcp.read_wiki_contents \
  repoName:owner/repo
参数:
  • repoName
    (必填):格式为
    owner/repo
    的GitHub仓库。

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:
  • repoName
    (required): GitHub repository in
    owner/repo
    format.
  • question
    (required): The question to answer about the repo.
bash
bunx mcporter call https://mcp.deepwiki.com/mcp.ask_question \
  repoName:owner/repo \
  question:"How does the routing layer work?"
参数:
  • repoName
    (必填):格式为
    owner/repo
    的GitHub仓库。
  • question
    (必填):针对仓库提出的问题。

Examples

示例

List topics for React

列出React的文档主题

bash
bunx mcporter call https://mcp.deepwiki.com/mcp.read_wiki_structure \
  repoName:facebook/react
bash
bunx mcporter call https://mcp.deepwiki.com/mcp.read_wiki_structure \
  repoName:facebook/react

Read documentation for React

阅读React的文档

bash
bunx mcporter call https://mcp.deepwiki.com/mcp.read_wiki_contents \
  repoName:facebook/react
bash
bunx mcporter call https://mcp.deepwiki.com/mcp.read_wiki_contents \
  repoName:facebook/react

Ask 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
    mcporter list
    to confirm parameter names and defaults.
  • Use precise, repo-specific questions for better answers.
  • Only public GitHub repositories are supported.
  • 始终先使用
    mcporter list
    确认参数名称和默认值。
  • 使用精准的、针对仓库的问题以获得更好的答案。
  • 仅支持公开GitHub仓库。