smithery.ai

mcp-deepwiki

This skill provides guidance for using DeepWiki MCP to explore GitHub repository documentation. Use when researching repository structure, understanding library APIs, asking questions about open-source projects, or exploring documentation for any GitHub repository.

First seen Mar 26, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,858 B
  • docs SUMMARY.md 285 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 8 installs

SKILL.md

DeepWiki MCP

Overview

This skill enables exploration of GitHub repository documentation using the DeepWiki MCP server. DeepWiki provides AI-generated documentation and Q&A capabilities for any GitHub repository.

When to Use This Skill

  • Researching GitHub repository documentation
  • Understanding library or framework APIs
  • Asking specific questions about open-source projects
  • Exploring repository structure and architecture
  • Learning how to use unfamiliar libraries

Available Tools

readwikistructure

Get a list of documentation topics for a GitHub repository.

Tool: mcpdeepwikireadwikistructure

Parameters:

  • repoName (required): GitHub repository in "owner/repo" format

Example:

mcp__deepwiki__read_wiki_structure({ repoName: "microsoft/vscode" })

readwikicontents

View comprehensive documentation about a GitHub repository.

Tool: mcpdeepwikireadwikicontents

Parameters:

  • repoName (required): GitHub repository in "owner/repo" format

Example:

mcp__deepwiki__read_wiki_contents({ repoName: "xtermjs/xterm.js" })

ask_question

Ask any question about a GitHub repository and get AI-powered answers.

Tool: mcpdeepwikiask_question

Parameters:

  • repoName (required): GitHub repository in "owner/repo" format
  • question (required): The question to ask about the repository

Example:

mcp__deepwiki__ask_question({
  repoName: "microsoft/vscode",
  question: "How does the terminal extension handle PTY integration?"
})

Common Workflows

Research a New Library

  1. Get wiki structure to understand available topics
  2. Read full documentation for comprehensive understanding
  3. Ask specific questions about implementation details

Understand VS Code Implementation

mcp__deepwiki__ask_question({
  repoName: "microsoft/vscode",
  question: "How does VS Code implement terminal session persistence?"
})

Explore xterm.js API

mcp__deepwiki__ask_question({
  repoName: "xtermjs/xterm.js",
  question: "What addons are available and how do I use them?"
})

Best Practices

  1. Start with structure: Use readwikistructure first to understand available topics
  2. Be specific with questions: Provide context in questions for better answers
  3. Use full repo path: Always use the complete "owner/repo" format
  4. Combine with local code: Use DeepWiki insights together with local codebase exploration

References

For detailed tool parameters, see references/tools.md.