DeepWiki
質問もできる
めちゃいいね
MCP
設定
code:claude_desktop_config.json
{
"mcpServers": {
"deepwiki": {
"command": "/Users/pokutuna/.local/share/mise/installs/node/20.12.2/bin/npx",
"args": [
"mcp-remote",
]
}
}
}
code:~/.claude.json
{
// ...
"mcpServers": {
"deepwiki": {
"type": "sse",
}
}
}
code:list_tool.sh
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list",
"params": {}
}'
code:tools.json
{
"jsonrpc": "2.0",
"id": 1,
"result": {
"tools": [
{
"name": "read_wiki_structure",
"description": "Get a list of documentation topics for a GitHub repository",
"inputSchema": {
"type": "object",
"properties": {
"repoName": {
"type": "string",
"description": "GitHub repository: owner/repo (e.g. \"facebook/react\")"
}
},
"required": [
"repoName"
],
"additionalProperties": false,
}
},
{
"name": "read_wiki_contents",
"description": "View documentation about a GitHub repository",
"inputSchema": {
"type": "object",
"properties": {
"repoName": {
"type": "string",
"description": "GitHub repository: owner/repo (e.g. \"facebook/react\")"
}
},
"required": [
"repoName"
],
"additionalProperties": false,
}
},
{
"name": "ask_question",
"description": "Ask any question about a GitHub repository",
"inputSchema": {
"type": "object",
"properties": {
"repoName": {
"type": "string",
"description": "GitHub repository: owner/repo (e.g. \"facebook/react\")"
},
"question": {
"type": "string",
"description": "The question to ask about the repository"
}
},
"required": [
"repoName",
"question"
],
"additionalProperties": false,
}
}
]
}
}