mcp-server-idapro vs time
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-idapro by fdrechsler | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 98 | ★ 85,748 |
| 30d uses | — | — |
| Score | 41 | 77 |
| Official | — | ✓ |
| Categories | SecurityDeveloper ToolsAI / LLM Tools | ProductivityDeveloper ToolsCommunication |
| Language | Python | TypeScript |
| Last commit | 14 mo ago | this month |
mcp-server-idapro · Summary
An MCP server bridging AI assistants with IDA Pro for reverse engineering tasks.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
mcp-server-idapro · Use cases
- Automating binary analysis tasks in reverse engineering workflows
- Enabling AI assistants to perform code analysis and malware research
- Creating intelligent reverse engineering assistants that can explore binaries
time · Use cases
- Assisting with international meeting scheduling across time zones
- Providing real-time time information for location-based queries
- Enabling time conversion for travel planning and itineraries
mcp-server-idapro · Install
Installation
1. Install the IDA Pro Remote Control Plugin
- Copy
ida_remote_server.pyto your IDA Pro plugins directory:
- Windows: %PROGRAMFILES%\IDA Pro\plugins - macOS: /Applications/IDA Pro.app/Contents/MacOS/plugins - Linux: /opt/idapro/plugins
- Start IDA Pro and open a binary file.
- The plugin will automatically start an HTTP server on
127.0.0.1:9045.
2. Install the MCP Server
- Clone this repository
- Install dependencies:
npm install - Build the project:
npm run build - Configure the MCP server in your AI assistant's MCP settings:
{
"mcpServers": {
"ida-pro": {
"command": "node",
"args": ["path/to/ida-server/dist/index.js"],
"env": {}
}
}
}time · Install
Installation Options
**Using uv (recommended):**
uvx mcp-server-time**Using PIP:**
pip install mcp-server-time
python -m mcp_server_time**Configure for Claude Desktop:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}