Marketing

DeepWiki MCP Server

Chat with AI and run tools instantly.

DeepWiki is a knowledge management and documentation platform that uses AI to organize, search, and connect information across teams.

Live tools
Agent guide included

Built by

DeepWiki

Chat with AI and run tools instantly.

AI Skill
SKILL.md

Domain knowledge for DeepWiki — workflow patterns, data models, and gotchas for your AI agent.

DeepWiki ingests public GitHub repositories and produces an AI-generated wiki — a hierarchical table of contents, long-form topic pages synthesised from the codebase + README + comments, and an LLM Q&A endpoint grounded in the same index. This bundle exposes that index over MCP. No authentication is required and there is no per-call cost surface to the agent; rate and concurrency limits are set by the upstream service.

Repository scope (read this first)

  • All operations take a repoName in owner/repo form, lowercase, exactly as it appears in the GitHub URL (e.g. facebook/react, vercel/next.js).
  • Only public GitHub repositories are queryable. Private repos and non-GitHub hosts (GitLab, Bitbucket) are out of scope.
  • A repo is queryable only after DeepWiki has indexed it. Popular OSS projects are pre-indexed; smaller or recently-pushed repos may not be. The not-found error tells the user how to trigger indexing — surface that URL verbatim, do not retry blindly.

Workflow

The three capabilities form a deliberate funnel — start broad, narrow only when needed:

  1. Structure first. When the user asks anything about a repo you don't already understand, fetch the topic outline. The response is a numbered Markdown table of contents (e.g. 1 Overview, 4.2 Work Loop and Rendering Phases). It tells you what the wiki actually covers and gives you the section vocabulary the contents and Q&A endpoints will recognise.
  2. Read contents when the user wants the prose of the wiki (architectural overviews, system descriptions, how subsystems fit together). The response is long-form Markdown — useful for summarisation, citation, or feeding back into another tool. If the question is broad ("explain X"), this is usually the right surface.
  3. Ask when the user has a specific question whose answer is not directly a section heading ("why does X use Y?", "where is Z implemented?", "how do I do A?"). The Q&A endpoint runs an LLM grounded in the indexed wiki and returns a synthesised answer with cross-references — strictly better than reading the full contents into context just to find one fact.

Concept-level disambiguation: structure = navigation, contents = read, ask = inference. Pick the highest-leverage one for the question; do not call all three.

Response shape

  • Structure: Markdown bullet outline with dotted numbering. Reliable for parsing section titles or building a follow-up ask prompt that names the section.
  • Contents: Free-form Markdown wiki body. Can be substantial (thousands of tokens for large repos) — prefer ask if you only need a fact.
  • Ask: Markdown answer plus inline citations to wiki sections. Treat citations as DeepWiki section references, not GitHub permalinks.

Operational gotchas

  • Unindexed repo error: the response is literally Error fetching wiki for <repo>: Repository not found. Visit https://deepwiki.com/<repo> to index it. Pass that URL through to the user — DeepWiki indexes a repo on first visit, and there is no MCP-side trigger. Do not loop retrying.
  • Multi-repo Q&A is fragile. The Q&A schema accepts an array of repos (up to 10) but routinely times out on more than one repo because each repo adds an indexing/grounding pass. Default to one repo per question. If the user genuinely needs cross-repo synthesis, ask each repo separately and merge the answers in your own context — that is faster and more reliable than batching.
  • Case sensitivity: GitHub itself is case-insensitive in URLs but DeepWiki canonicalises to lowercase. Normalise owner/repo to lowercase before calling to avoid spurious not-found errors.
  • Freshness lag: the index trails the repo's main branch. For questions about brand-new commits or PRs, DeepWiki is not a substitute for reading the source directly.
  • No write surface. All three tools are read-only; there is nothing to mutate, no quota counter the agent needs to manage.

Tools in this Server

This server uses the MCP protocol with a live tool list. Tools are discovered when your MCP client connects (often after authentication), so they are not enumerated on this public page. Open Studio or connect from your client to see the tools available to your workspace.

Frequently Asked Questions

What is the DeepWiki MCP server?

DeepWiki is a knowledge management and documentation platform that uses AI to organize, search, and connect information across teams. It provides MCP tools that your client discovers when it connects (this page may not list every tool name) that AI agents can use through the Model Context Protocol (MCP).

How do I connect DeepWiki to my AI agent?

Add the MCPBundles server URL to your MCP client configuration (Claude Desktop, Cursor, VS Code, etc.). The URL format is: https://mcp.mcpbundles.com/bundle/deepwiki-mcp. Authentication is handled automatically.

How many tools does DeepWiki provide?

DeepWiki is a remote MCP server. The live tool list is supplied by the server when your MCP client connects, so the count is not fixed on this public page. After you connect in MCPBundles Studio or your client, you will see the tools your session can call. A SKILL.md is still included to guide your agent on capabilities and workflows.

What authentication does DeepWiki require?

DeepWiki uses open data APIs — no authentication required.

Setup Instructions

Connect DeepWiki to any MCP client in minutes

MCP URL
https://mcp.mcpbundles.com/bundle/deepwiki-mcp

One-click install:

The link prefills the Add custom connector dialog — you still review the values and click Add, then Connect to complete OAuth.

Or add manually

  1. Open claude.ai → Settings → Connectors.
  2. Click the + button and choose Add custom connector.
  3. Set Name to DeepWiki and paste the MCP URL into Remote MCP server URL.
  4. Click Add. DeepWiki will appear under Not connected — select it and click Connect to complete OAuth.
Name: DeepWiki
Remote MCP server URL: https://mcp.mcpbundles.com/bundle/deepwiki-mcp
Authentication: OAuth

Custom connectors at claude.ai require a paid Claude plan (Pro, Max, Team, or Enterprise).

Maintain this listing

Operate DeepWiki? You can take over the listing's metadata.

Operate DeepWiki?

Take over this listing's metadata — name, description, category, logo, website, contact email, and skill content. Verification is a 6-digit code we email to one of the maintainer addresses your server already publishes in /.well-known/security.txt or /.well-known/mcpbundles.json. Free, takes about a minute.

Sign up to claim

Try DeepWiki now

No API key or third-party login required. Chat with AI and run tools instantly.

DeepWiki MCP Server & Skill — Live Tools