一键导入
mcp-deepwiki
// Skills for accessing and searching docs in DeepWiki/GitHub’s public code repositories can help users understand open-source project source codes, and users can also ask questions directly about the code docs.
// Skills for accessing and searching docs in DeepWiki/GitHub’s public code repositories can help users understand open-source project source codes, and users can also ask questions directly about the code docs.
Interact with local Chrome browser session (only on explicit user approval after being asked to inspect, debug, or interact with a page open in Chrome)
Web reading, search, academic research, NLP, screenshots, and PDF extraction via Jina AI mcpcall. TRIGGER when need to read a URL, search the web, find academic papers (arXiv/SSRN), classify text, rerank documents, deduplicate content, capture screenshots, or extract PDF figures.
Guide and template for converting MCP servers into self-contained Claude Code skills with a Python wrapper script. TRIGGER when creating a new MCP skill, wrapping an MCP server as a skill, or need the mcpcall script template.
AI-powered documentation for GitHub repositories via DeepWiki MCP. TRIGGER when need to understand a GitHub repository, read its documentation topics, ask questions about a repo's codebase, architecture, or usage, or explore how an open-source project works.
Search real-world code examples from over a million public GitHub repositories via grep.app MCP. TRIGGER when need to find code usage patterns, see how developers use a library/API in practice, find production examples of a specific function or syntax, or search GitHub code at scale.
Best practices for AI-driven English-to-Chinese translation. This skill should be used when the user asks to "translate to Chinese", "update the Chinese translation", "improve Chinese translation", "fix translation quality", "review Chinese translation", or when translating any English text into Chinese. Also applies when polishing an existing Chinese translation of English content.
| name | mcp-deepwiki |
| description | Skills for accessing and searching docs in DeepWiki/GitHub’s public code repositories can help users understand open-source project source codes, and users can also ask questions directly about the code docs. |
| disable-model-invocation | true |
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
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"npx -y mcporter call "${MCP_URL}.read_wiki_structure" repoName:owner/reponpx -y mcporter call "${MCP_URL}.read_wiki_contents" repoName:owner/repo/**
* 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"
]
}