{
"mcpServers": {
"deepwiki-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server extension for the Zed IDE that provides seamless integration with DeepWiki and Devin AI documentation services.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 239 days ago.
Will it work with my client?
Transport: stdio, sse, http. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
A Model Context Protocol server for searching and analyzing arXiv papers
📖 MCP server for fetch deepwiki.com and get latest knowledge in Cursor and other Code Editors
Model Context Protocol (MCP) Server to connect your AI with any MediaWiki
Open source implementation and extension of Google Research’s PaperBanana for automated academic figures, diagrams, and research visuals, expanded to new domains like slide generation.
MCP Security Weekly
Get CVE alerts and security updates for Deepwiki Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server extension for the Zed IDE that provides seamless integration with DeepWiki and Devin AI documentation services.
This extension uses a two-part architecture with automatic binary download:
Zed ↔ Extension (WASM) → Auto-Downloaded Bridge (Native) ↔ HTTP MCP Server
Extension (WASM) - crates/extension/
Bridge Binary (Native) - crates/bridge/
rustup target add wasm32-wasip1Cmd/Ctrl+Shift+P)The extension will automatically download the appropriate bridge binary for your platform when first used.
If you want to build from source:
Clone the repository:
git clone https://github.com/keshav1998/deepwiki-mcp-server
cd deepwiki-mcp-server
Build everything:
./build.sh
Install manually in Zed:
# Copy to Zed extensions directory
cp -r dist/* ~/.config/zed/extensions/deepwiki-mcp-server/
Add to your Zed settings.json:
{
"context_servers": {
"deepwiki-mcp-server": {
"endpoint": "https://mcp.deepwiki.com",
"protocol": "mcp"
}
}
}
{
"context_servers": {
"deepwiki-mcp-server": {
"endpoint": "https://mcp.devin.ai",
"protocol": "mcp",
"devin_api_key": "your-api-key-here"
}
}
}
For secure API key management:
export DEVIN_API_KEY="your-api-key-here"
deepwiki-mcp-server/
├── crates/
│ ├── extension/ # Zed WASM extension
│ │ ├── src/
│ │ │ ├── lib.rs # Extension implementation
│ │ │ └── tests.rs # Extension tests
│ │ └── configuration/ # UI configuration files
│ └── bridge/ # Native bridge binary
│ └── src/
│ ├── main.rs # Bridge entry point
│ └── mcp_bridge/ # MCP protocol implementation
├── extension.toml # Zed extension manifest
├── build.sh # Build script
└── scripts/ # Legacy shell scripts (deprecated)
# Build extension (WASM)
cargo build --manifest-path crates/extension/Cargo.toml --target wasm32-wasip1
# Build bridge (native)
cargo build --manifest-path crates/bridge/Cargo.toml --release
# Run tests
cargo test --workspace
# Format code
cargo fmt --all
# Run clippy
cargo clippy --workspace --tests -- -D warnings
# Fix clippy issues automatically
cargo clippy --fix --allow-di
... [View full README on GitHub](https://github.com/kmshdev/deepwiki-mcp-server#readme)