DeepWiki MCP
Cognition's free, no-auth remote MCP server for DeepWiki: generated wikis and grounded Q&A for any public GitHub repository, from inside your agent.
DeepWiki MCP is Cognition's free, remote, no-authentication MCP server for public GitHub repos. Its three tools let an agent list a repo's wiki topics, read DeepWiki's generated documentation, and ask questions that return a context-grounded AI answer. It's a proprietary hosted service; private repos go through the separate Devin MCP with a Devin API key.
DeepWiki MCP is Cognition's free, remote, no-authentication MCP server that gives an agent repository-level understanding of any public GitHub repo: it can browse the wiki DeepWiki generated for that repo, or ask a question and get back a grounded, AI-generated answer. Use it to understand how an unfamiliar dependency or open-source project is put together, not to pull snippets of API reference. There's nothing to install and no key to manage, but it's closed source and limited to public repos unless you move to the Devin MCP.
Highlights
- Free and keyless — Devin's docs call it "a free, remote, no-authentication-required service that provides access to public repositories."
- Three tools —
read_wiki_structurelists a repo's documentation topics,read_wiki_contentsreturns that documentation, andask_questionanswers any question about the repo. - Answers, not files —
ask_questionreturns an "AI-powered, context-grounded response," so the agent gets an explanation instead of raw source to read. - Streamable HTTP —
https://mcp.deepwiki.com/mcpis the recommended endpoint; the legacy SSE endpoint at/sseis being deprecated as of September 2026. - An upgrade path for private code — the Devin MCP at
mcp.devin.aiserves public and private repos with a Devin API key, and itsask_questioncan cover up to 10 repositories at once. - Backed by DeepWiki — the same wikis are browsable at deepwiki.com, which bills itself as Deep Research for GitHub, powered by Devin.
In an AI-assisted workflow
The Claude Code command comes straight from Devin's docs and adds the server at user scope over HTTP:
claude mcp add -s user -t http deepwiki https://mcp.deepwiki.com/mcpMost other clients take the standard url field:
{
"mcpServers": {
"deepwiki": {
"url": "https://mcp.deepwiki.com/mcp"
}
}
}Then point the agent at a repo by its GitHub name:
Ask DeepWiki how tokio-rs/axum structures its middleware, then sketch our auth layer to match.
Read the wiki structure for the repo behind this dependency and summarize the sections on configuration.It's most useful at the start of a task, before the agent reads any code, because a wiki overview tells it where to look. For what user scope means next to local and project scope, see adding MCP servers to Claude Code.
TIP
If DeepWiki's tools never show up in a client, check the config field name first. Cognition's docs warn that Devin Desktop uses serverUrl while most other clients use url, and that the wrong field name makes the client silently ignore the server.
How it compares
Context7 returns snippets from a library-docs index; DeepWiki works at the repository level, handing back a generated wiki or a server-side AI answer, with no key and no documented quota. GitMCP is the closest free sibling: it gives the agent a repo's own docs plus code search, where DeepWiki answers from its generated wiki. DeepWiki is also an option for read-only repo understanding when you'd rather not issue the token that the GitHub MCP server needs. Serena is a different tool altogether: it works on your local working tree with symbol-level retrieval and editing, while DeepWiki works from repos hosted on GitHub.
Good to know
DeepWiki MCP is built and run by Cognition, the makers of Devin, and Cognition's blog announced it in May 2025. It's a proprietary hosted service with no public source repo or license, so there's nothing to self-host and nothing runs locally. The live server reported version 2.14.3 in September 2026.
Rate limits and uptime commitments aren't documented, so keep a fallback before you make it part of an automated pipeline. The server's own instructions also mention private-mode tools, such as generate_wiki and list_available_repos, that aren't available on the public endpoint. Private repositories require a Devin account and API key, so check Devin's plans before you rely on that path. For more servers in the same category, see the best MCP servers in 2026.
Frequently asked questions
- What does DeepWiki MCP add to Claude Code?
- Architecture-level context on other people's repositories, such as your dependencies or an unfamiliar open-source project, through DeepWiki's generated wikis and an ask_question tool. There's nothing to clone or index locally.
- How do I add DeepWiki MCP to Claude Code?
- Run the command from Devin's docs: claude mcp add -s user -t http deepwiki https://mcp.deepwiki.com/mcp. The -s user flag makes it available in every project, and no API key is needed.
- Is DeepWiki MCP free?
- Yes for public repositories: Cognition describes it as a free, remote, no-authentication-required service. Private repositories need a Devin account and API key, used through the separate Devin MCP server.
Filed under
mcp · github · documentation · code-understanding · remote-mcp
Related
- GitMCPFree, open-source remote MCP server that turns any public GitHub repo or Pages site into docs and code-search tools for your agent. No signup or key.
- Context7Upstash's MCP server that pulls up-to-date, version-specific library documentation into your agent's context — the cure for hallucinated APIs.
- Adding MCP Servers to Claude Code: Local, Remote, and Project-ScopedThe complete claude mcp add reference — stdio vs HTTP transports, local/project/user scopes, .mcp.json with env expansion, OAuth via /mcp, and the gotchas.
- The Best MCP Servers in 2026The MCP servers actually worth connecting in 2026 — Context7, GitHub, Chrome DevTools, Playwright, Serena, Exa, Firecrawl, and official vendor servers.
- Add MCP ServerAdd an MCP server to the current project the safe way — pick the transport and scope, wire secrets through env vars, vet provenance, and verify the connection before trusting it.
- DevinCognition's autonomous AI software engineer that works in its own cloud workspace with an editor, terminal, and browser.