DeepWiki OMNeT++ MCP Server
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@DeepWiki OMNeT++ MCP ServerHow do I create a simple network in OMNeT++?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
DeepWiki OMNeT++ MCP Server
A custom MCP (Model Context Protocol) server that queries multiple repositories on DeepWiki, providing comprehensive answers about OMNeT++ and INET Framework development.
β¨ Features
This MCP server provides three powerful tools for OMNeT++ and INET documentation:
omnetpp_ask_question - Ask natural language questions about OMNeT++ and INET
Searches across multiple repositories simultaneously
Returns merged results with clear source attribution
omnetpp_read_wiki_structure - Retrieve the complete documentation structure
Gets wiki topics from all configured repositories
omnetpp_read_wiki_contents - Fetch detailed contents for specific topics
Queries all repositories for comprehensive coverage
π― Multi-Repository Support
The server now queries both repositories in parallel:
omnetpp/omnetpp- OMNeT++ simulation frameworkinet-framework/inet- INET Framework for network simulations
Results are merged with clear headers showing which repository provided each answer. See MULTI_REPO_SETUP.md for details.
Related MCP server: Local DeepWiki MCP Server
Installation
Install dependencies:
npm installBuild the project:
npm run buildThe compiled server will be in the dist/ directory.
Configuration
Configure the MCP server based on your IDE/client:
For Cline (VS Code Extension) β RECOMMENDED
Open VS Code Command Palette (
Cmd+Shift+Pon macOS,Ctrl+Shift+Pon Windows/Linux)Type "Preferences: Open User Settings (JSON)"
Or directly edit:
macOS:
~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.jsonWindows:
%APPDATA%\Code\User\globalStorage\saoudrizwan.claude-dev\settings\cline_mcp_settings.jsonLinux:
~/.config/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json
Add this configuration (replace the path with your actual project location):
{
"mcpServers": {
"deepwiki-omnetpp": {
"command": "node",
"args": [
"/absolute/path/to/MCP4omnetpp/dist/index.js"
],
"disabled": false,
"autoApprove": []
}
}
}Reload VS Code:
Cmd+Shift+Pβ "Developer: Reload Window"
For Windsurf IDE
Open Windsurf settings
Navigate to MCP Servers configuration
Add a new server with:
Name:
deepwiki-omnetppCommand:
nodeArgs:
["/absolute/path/to/MCP4omnetpp/dist/index.js"]
Restart Windsurf
For Claude Desktop
macOS: Edit ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: Edit %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"deepwiki-omnetpp": {
"command": "node",
"args": [
"/absolute/path/to/MCP4omnetpp/dist/index.js"
]
}
}
}Restart Claude Desktop after saving.
For Cursor IDE
Open Cursor Settings
Navigate to Extensions β MCP Configuration
Add the server configuration:
{
"deepwiki-omnetpp": {
"command": "node",
"args": ["/absolute/path/to/MCP4omnetpp/dist/index.js"]
}
}Restart Cursor
For Zed Editor
Edit your Zed configuration file and add:
{
"context_servers": {
"deepwiki-omnetpp": {
"command": "node",
"args": ["/absolute/path/to/MCP4omnetpp/dist/index.js"]
}
}
}Important Notes
Replace
/absolute/path/to/MCP4omnetpp/with the actual absolute path to your projectOn Windows, use double backslashes:
C:\\Users\\YourName\\MCP4omnetpp\\dist\\index.jsEnsure Node.js is installed and accessible in your PATH
After configuration changes, always restart/reload your IDE/client
Verifying Installation
After reloading, check that the tools are available:
Look for these tools in your MCP client:
omnetpp_ask_questionomnetpp_read_wiki_structureomnetpp_read_wiki_contents
Test with a simple query:
Use tool: omnetpp_read_wiki_structure
Usage
Once configured, you'll have access to these tools in your MCP client:
Ask a Question
Use tool: omnetpp_ask_question
Parameters: { "question": "How do I create a simple network in OMNeT++?" }Get Wiki Structure
Use tool: omnetpp_read_wiki_structure
Parameters: {}Read Wiki Contents
Use tool: omnetpp_read_wiki_contents
Parameters: { "topic": "getting-started" }How It Works
This server acts as an intelligent proxy with multi-repository support:
Receives tool calls from MCP clients (Claude, Cline, Windsurf, etc.)
Queries multiple repositories in parallel:
omnetpp/omnetpp(OMNeT++ core framework)inet-framework/inet(INET network simulation)
Connects to DeepWiki API via Streamable HTTP transport
Merges results from all repositories with clear attribution
Returns comprehensive answers combining insights from both sources
Architecture
βββββββββββββββ ββββββββββββββββββββ βββββββββββββββββββ
β MCP Client β stdio β This MCP Proxy β HTTP β DeepWiki API β
β (Cline/etc) ββββββββββΆβ (Multi-Repo) ββββββββββΆβ (Public) β
βββββββββββββββ ββββββββββββββββββββ βββββββββββββββββββ
β
βββΆ Query: omnetpp/omnetpp
βββΆ Query: inet-framework/inet
(Parallel)Benefits
β
No manual repository specification - Automatically queries relevant repos
β
Comprehensive answers - Get information from both OMNeT++ and INET
β
Fast parallel queries - All repositories queried simultaneously
β
Fault tolerant - One repo failing doesn't break the entire query
β
Clear source attribution - Know which repo provided each answer
See MULTI_REPO_SETUP.md for more details on adding repositories.
Development
Source:
src/index.tsBuild:
npm run buildOutput:
dist/index.js
Technical Details
Built with the official
@modelcontextprotocol/sdk(v1.25.3)Uses JSON Schema for tool definitions (compatible with all MCP clients)
Uses Streamable HTTP transport to connect to DeepWiki
Proxies requests to
https://mcp.deepwiki.com/mcpMulti-repository querying: Queries multiple repos in parallel using
Promise.allSettled()Current repositories:
omnetpp/omnetppandinet-framework/inetFault tolerant: Failed queries don't break the entire response
Result merging: Combines answers with clear repository headers
Note: SSE transport was deprecated by DeepWiki in January 2026
Adding More Repositories
Edit src/index.ts and modify the REPOS array:
const REPOS = [
"omnetpp/omnetpp",
"inet-framework/inet",
"your-org/your-repo" // Add more here
];Then rebuild with npm run build and reload your MCP client.
Troubleshooting
Server Not Starting
Ensure Node.js is installed and accessible
Check that the path in the configuration points to the correct
dist/index.jsfileVerify the build completed successfully
No Tools Available
Restart your MCP client (Claude Desktop or VSCode with Cline)
Check the MCP client logs for connection errors
API Errors
The DeepWiki API must be accessible
Check your internet connection
Verify the official DeepWiki MCP service is operational
This server cannot be deployed
Maintenance
Related MCP Connectors
A cited wiki of your GitHub repo: search, read pages, find symbols and ask, with line citations.
Search @imqueue docs and scaffold typed services & clients from your AI coding agent.
Search and query nTop's knowledge base and engineering guides from AI applications.
- docs2mcpOAuthcom.docs2mcp
Query your own PDFs and documents from any MCP client. Every answer cites the page it came from.
Related MCP Servers
- AlicenseBqualityDmaintenanceCrawls and converts DeepWiki documentation pages into Markdown format, enabling retrieval of complete documentation or specific pages from repositories. Note: Currently not functional due to DeepWiki scraping restrictions.14 npmMIT
- AlicenseAqualityDmaintenanceGenerates DeepWiki-style documentation for private code repositories with RAG-based Q\&A capabilities, semantic code search, and multi-language AST parsing. Supports local LLMs (Ollama) or cloud providers for privacy-focused codebase analysis.655MIT
- FlicenseNot gradedqualityDmaintenanceEnables querying a local wiki through MCP-style tools, including search, Q\&A, and knowledge map, with a web viewer for human browsing.-
- FlicenseNot gradedqualityDmaintenanceEnables semantic search of Weaviate documentation using vector search, providing relevant documents and code snippets.-