DeepWiki
DeepWiki
質問もできる
langchain-ai/langchain エラー時のフォールバックのパターンを教えて - DeepWiki
めちゃいいね
huggingface/transformers | DeepWiki
huggingface/trl | DeepWiki
huggingface/trl GDPO を行うために、学習対象の言語モデル以外に必要なデータやモデルを教えて - DeepWiki
langchain-ai/langchain | DeepWiki
langchain-ai/langchain エラー時のフォールバックのパターンを教えて - DeepWiki
langchain-ai/langgraph | DeepWiki
pyannote/pyannote-audio | DeepWiki
pyannote/pyannote-audio hook で書き起こし過程のデータを出力させたい、ステップごとにどのようなデータが存在しどのような形式だろうか? また Speaker Embedding を書き出すにはどのようにするのがよいだろうか? - DeepWiki
クラスタリングロジックを別のものに変えるには現実的? 改善の余地がある部分や、改善案を挙げてください - DeepWiki
SYSTRAN/faster-whisper | DeepWiki
SYSTRAN/faster-whisper デコード時に、通常の書き起こしテキストと、ひらがな・数字記号以外の確率分布を0に制約したよみがなのデコードを同時に行いたい、どのようにするのがよいだろうか? - DeepWiki
fastapi/fastapi | DeepWiki
microsoft/vscode | DeepWiki
pydantic/pydantic | DeepWiki
pydantic/pydantic-ai | DeepWiki
remix-run/react-router | DeepWiki
DeepWiki
mitmproxy/mitmproxy | DeepWiki
MCP
https://mcp.deepwiki.com/
設定
code:claude_desktop_config.json
{
"mcpServers": {
"deepwiki": {
"command": "/Users/pokutuna/.local/share/mise/installs/node/20.12.2/bin/npx",
"args": [
"mcp-remote",
"https://mcp.deepwiki.com/sse"
]
}
}
}
code:~/.claude.json
{
// ...
"mcpServers": {
"deepwiki": {
"type": "sse",
"url": "https://mcp.deepwiki.com/sse"
}
}
}
claude-code はこっちの記法に対応していて mcp-remote 要らない
https://mcp.deepwiki.com/sse に繋いで返ってくる event: endpoint に対してリクエストを送る
code:list_tool.sh
$ curl -X POST 'https://mcp.deepwiki.com/sse/message?sessionId=***' \
-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,
"$schema": "http://json-schema.org/draft-07/schema#"
}
},
{
"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,
"$schema": "http://json-schema.org/draft-07/schema#"
}
},
{
"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,
"$schema": "http://json-schema.org/draft-07/schema#"
}
}
]
}
}