mcp-deepwiki
DeepWikiやGitHubの公開コードリポジトリにあるドキュメントにアクセスして検索することで、オープンソースプロジェクトのソースコードを理解したり、コードに関する質問を直接行ったりするSkill。
📜 元の英語説明(参考)
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.
🇯🇵 日本人クリエイター向け解説
DeepWikiやGitHubの公開コードリポジトリにあるドキュメントにアクセスして検索することで、オープンソースプロジェクトのソースコードを理解したり、コードに関する質問を直接行ったりするSkill。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o mcp-deepwiki.zip https://jpskill.com/download/8602.zip && unzip -o mcp-deepwiki.zip && rm mcp-deepwiki.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/8602.zip -OutFile "$d\mcp-deepwiki.zip"; Expand-Archive "$d\mcp-deepwiki.zip" -DestinationPath $d -Force; ri "$d\mcp-deepwiki.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
mcp-deepwiki.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
mcp-deepwikiフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 1
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
DeepWiki
DeepWiki MCPサーバーは、DeepWikiの公開リポジトリドキュメントと検索機能(Ask Devin)へのプログラムによるアクセスを提供します。
MCP Server URL: https://mcp.deepwiki.com/mcp
Ask Question (推奨)
このツールの結果はAIによって生成されるため、少なくとも1分以上のタイムアウト時間が必要です。
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
/**
* GitHubリポジトリのドキュメントトピックのリストを取得します。
* Args:
* repoName: owner/repo形式のGitHubリポジトリ (例: "facebook/react")
*/
function read_wiki_structure(repoName: string): object;
{
"type": "object",
"properties": {
"repoName": {
"type": "string"
}
},
"required": [
"repoName"
]
}
/**
* GitHubリポジトリに関するドキュメントを表示します。
* Args:
* repoName: owner/repo形式のGitHubリポジトリ (例: "facebook/react")
*/
function read_wiki_contents(repoName: string): object;
{
"type": "object",
"properties": {
"repoName": {
"type": "string"
}
},
"required": [
"repoName"
]
}
/**
* GitHubリポジトリに関する質問をして、AIによるコンテキストに基づいた回答を得ます。
* Args:
* repoName: owner/repo形式のGitHubリポジトリまたはリポジトリのリスト (最大10個)
* question: リポジトリについて質問する内容
*/
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"
]
} 📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
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"
]
}