liusijin / DeepWiki.py
0 likes
0 forks
1 files
Last active 1 month ago
| 1 | #!/usr/bin/env python3 |
| 2 | """DeepWiki extension - MCP HTTP client for GitHub repo documentation""" |
| 3 | |
| 4 | import json |
| 5 | import urllib.request |
| 6 | import ssl |
| 7 | import time |
| 8 | |
| 9 | def mcp_call(tool_name, arguments): |
| 10 | """Make MCP JSON-RPC call to DeepWiki""" |
Newer
Older