# Send DeepWiki MCP to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "deepwiki-mcp",
    "name": "DeepWiki MCP",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/chunhualiao/deepwiki-mcp",
    "canonicalUrl": "https://clawhub.ai/chunhualiao/deepwiki-mcp",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/deepwiki-mcp",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=deepwiki-mcp",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "CHANGELOG.md",
      "README.md",
      "SKILL.md",
      "scripts/deepwiki.sh",
      "skill.yml",
      "tests/test_triggers.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "deepwiki-mcp",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T10:59:51.786Z",
      "expiresAt": "2026-05-09T10:59:51.786Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=deepwiki-mcp",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=deepwiki-mcp",
        "contentDisposition": "attachment; filename=\"deepwiki-mcp-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "deepwiki-mcp"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/deepwiki-mcp"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/deepwiki-mcp",
    "downloadUrl": "https://openagent3.xyz/downloads/deepwiki-mcp",
    "agentUrl": "https://openagent3.xyz/skills/deepwiki-mcp/agent",
    "manifestUrl": "https://openagent3.xyz/skills/deepwiki-mcp/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/deepwiki-mcp/agent.md"
  }
}
```
## Documentation

### DeepWiki MCP

Query any public GitHub repository using DeepWiki's AI-powered documentation and Q&A service. No API key, no auth, free.

MCP endpoint: https://mcp.deepwiki.com/mcp

### Scope & Boundaries

This skill handles:

Asking natural-language questions about any public GitHub repo
Listing documentation topics indexed by DeepWiki
Fetching full wiki contents for a repo
Running queries via the included helper script

This skill does NOT handle:

Private repository access (requires paid Devin account)
Modifying repositories or submitting PRs
Real-time code analysis (DeepWiki may lag a few days behind latest commits)
Local code search or grep (use standard file tools for that)

### Inputs

InputRequiredDescriptionQuestionYesNatural-language question about a repoRepositoryNoowner/repo format. Defaults to openclaw/openclawActionNoask (default), topics, or docs

### Outputs

AI-grounded text answer with source references from the repo
Or a structured list of documentation topics
Or full wiki contents (large output)

### Step 1 — Run the helper script

The script is located in this skill's directory at scripts/deepwiki.sh.

# Ask a question (defaults to openclaw/openclaw)
<skill_dir>/scripts/deepwiki.sh ask "How does session compaction work?"

# Ask about a specific repo
<skill_dir>/scripts/deepwiki.sh ask facebook/react "How does concurrent mode work?"

# List documentation topics
<skill_dir>/scripts/deepwiki.sh topics openclaw/openclaw

# Get full wiki contents (large output — prefer ask for targeted queries)
<skill_dir>/scripts/deepwiki.sh docs openclaw/openclaw

Replace <skill_dir> with the directory containing this SKILL.md.

### Step 2 — Interpret and relay the answer

DeepWiki returns AI-generated answers grounded in the repo's actual source code. The response typically includes:

Direct answer to the question
References to specific files and code paths
Context about related functionality

Relay the answer to the user, adding your own context if you have additional knowledge.

### Step 3 — Follow up if needed

If the answer is incomplete or raises new questions:

Ask a more specific follow-up question
Use topics to find relevant documentation sections
Use docs for broader context (but note: output can be very large)

### Direct curl (fallback)

If the helper script is unavailable:

curl -s -X POST https://mcp.deepwiki.com/mcp \\
  -H "Content-Type: application/json" \\
  -H "Accept: application/json, text/event-stream" \\
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "ask_question",
      "arguments": {
        "repoName": "owner/repo",
        "question": "YOUR QUESTION"
      }
    }
  }' | grep '^data:' | grep '"id":1' | sed 's/^data: //' | \\
  python3 -c "import json,sys; d=json.load(sys.stdin); print(d['result']['content'][0]['text'])"

### MCP Tools Reference

ToolPurposeArgumentsask_questionAsk any question, get AI-grounded answerrepoName, questionread_wiki_structureList documentation topics for a reporepoNameread_wiki_contentsGet full wiki docs for a reporepoName

### Error Handling

ProblemDetectionActionTimeout (>60s)curl hangs or no responseRetry once; DeepWiki may be under loadEmpty responseNo data: lines in SSE streamCheck if repo exists and is publicRepo not indexedError message about unknown repoTry again — DeepWiki indexes on first requestRate limitedHTTP 429 or error responseWait 30s and retryScript not foundFile not at expected pathUse direct curl fallback

### Success Criteria

DeepWiki returns a substantive answer (not an error or empty response)
Answer references actual code/files from the repository
User's question is addressed with grounded information

### Configuration

No persistent configuration required. The skill uses:

exec tool to run the helper script (bash + curl + python3)
No API keys or authentication needed
Works for any public GitHub repository

System dependencies:

DependencyPurposebashScript executioncurlHTTP requests to MCP endpointpython3JSON parsing of SSE responses

### Notes

Responses take 10-30s (AI generates answers server-side)
ask_question is the most useful tool — use it first
DeepWiki crawls repos periodically; may lag behind very recent commits
Works for any public GitHub repo, not just OpenClaw
For private repos, a paid Devin account is required
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: chunhualiao
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-02T10:59:51.786Z
- Expires at: 2026-05-09T10:59:51.786Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/deepwiki-mcp)
- [Send to Agent page](https://openagent3.xyz/skills/deepwiki-mcp/agent)
- [JSON manifest](https://openagent3.xyz/skills/deepwiki-mcp/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/deepwiki-mcp/agent.md)
- [Download page](https://openagent3.xyz/downloads/deepwiki-mcp)