How to Set up DeepWiki MCP Server
1 min readMay 28, 2025
DeepWiki released a remote MCP server. Now we can use DeepWiki from MCP clients such as Claude Desktop, Cursor, Windsurf, VSCode(Cline, Roo code), Tare, etc.
Available Tools
The DeepWiki MCP server offers three main tools:
read_wiki_structure- Get a list of documentation topics for a GitHub repositoryread_wiki_contents- View documentation about a GitHub repositoryask_question- Ask any question about a GitHub repository and get an AI-powered, context-grounded response
How to set up DeepWiki
The DeepWiki MCP server is a free, rmeove, no-auth and it supports SSE(Sever Sent Events) so we just need to add the URL to use DeepWiki MCP sercer which is very easy to setup.
Claude Desktop
{
"mcpServers": {
"deepwiki": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.deepwiki.com/sse"
]
}
}
}Cursor
{
"mcpServers": {
"deepwiki": {
"url": "https://mcp.deepwiki.com/sse"
}
}
}Windsurf
{
"mcpServers": {
"deepwiki": {
"serverUrl": "https://mcp.deepwiki.com/sse"
}
}
}Cline
{
"mcpServers": {
"deepwiki": {
"url": "https://mcp.deepwiki.com/sse",
"disabled": false,
"autoApprove": []
}
}
}