mcp-deepwiki
AI-powered documentation search and Q&A for GitHub repositories via DeepWiki.
- Three command modes: ask natural-language questions about repository code and docs, browse wiki structure and topics, or read full documentation contents
- Supports single or multiple repositories (up to 10) in a single query for comparative analysis
- AI-generated answers are grounded in actual repository documentation, with minimum 1-minute timeout for response generation
- Works with any public GitHub repository in owner/repo format
DeepWiki
The DeepWiki MCP server provides programmatic access to DeepWiki’s public repository documentation and search capabilities (Ask Devin).
MCP Server URL: https://mcp.deepwiki.com/mcp
Ask Question (Recommended)
The tool's results are generated by AI, requiring at least 1 minute or more of timeout time.
npx -y mcporter call "${MCP_URL}.ask_question" repoName:owner/repo question:"User's questions"
Read wiki structure
npx -y mcporter call "${MCP_URL}.read_wiki_structure" repoName:owner/repo
Read wiki contents
npx -y mcporter call "${MCP_URL}.read_wiki_contents" repoName:owner/repo
Schema
/**
* Get a list of documentation topics for a GitHub repository.
* Args:
* repoName: GitHub repository in owner/repo format (e.g. "facebook/react")
*/
function read_wiki_structure(repoName: string): object;
{
"type": "object",
"properties": {
"repoName": {
"type": "string"
}
},
"required": [
"repoName"
]
}
/**
* View documentation about a GitHub repository.
* Args:
* repoName: GitHub repository in owner/repo format (e.g. "facebook/react")
*/
function read_wiki_contents(repoName: string): object;
{
"type": "object",
"properties": {
"repoName": {
"type": "string"
}
},
"required": [
"repoName"
]
}
/**
* Ask any question about a GitHub repository and get an AI-powered, context-grounded response.
* Args:
* repoName: GitHub repository or list of repositories (max 10) in owner/repo format
* question: The question to ask about the repository
*/
function ask_question(repoName: unknown, question: string): object;
{
"type": "object",
"properties": {
"repoName": {
"anyOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"question": {
"type": "string"
}
},
"required": [
"repoName",
"question"
]
}
More from aahl/skills
edge-tts
Text-to-speech conversion using `uvx edge-tts` for generating audio from text. Use when (1) User requests audio/voice output with the "tts" trigger or keyword. (2) Content needs to be spoken rather than read (multitasking, accessibility, driving, cooking). (3) User wants a specific voice, speed, pitch, or format for TTS output.
2.1Kmaishou
商品价格全网对比技能,获取商品在淘宝(Taobao)、天猫(TMall)、京东(JD.com)、拼多多(PinDuoDuo)、抖音(Douyin)、快手(KaiShou)的最优价格、优惠券,当用户想购物或者获取优惠信息时使用。Get the best price, coupons for goods on Chinese e-commerce platforms, compare product prices, and use when users want to shop or get discount information.
1.9Kcrypto-report
Get cryptocurrency market data. Get Binance AI analysis report. Get blockchain news updates.
1.6Kmcp-duckgo
Skills for web search and content scraping via DuckDuckGo MCP Server. Used when users need online searching and web scraping.
1.3Kmcp-hass
The skill for control Home Assistant smart home devices and query states using MCP protocol.
1.3Kmcp-vods
用于追剧/追番的技能,为AI提供搜索影视播放地址的能力,并支持在小米电视上直接播放。当用户想搜索影视、动漫、短剧、综艺等节目信息或更新进度时使用此技能。
1.2K