ultimate_mcp_server vs asterisk-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | asterisk-mcp-server by winfunc | |
|---|---|---|
| Stars | ★ 149 | ★ 33 |
| 30d uses | — | — |
| Score | 85 | 38 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | SecurityDeveloper ToolsAI / LLM Tools |
| Language | Python | Python |
| Last commit | 2 mo ago | 14 mo ago |
ultimate_mcp_server · Summary
Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.
asterisk-mcp-server · Summary
Asterisk MCP server provides security scanning tools for code snippets and codebases via the Asterisk API.
ultimate_mcp_server · Use cases
- Complex document processing and analysis with OCR and structured data extraction
- Web automation and research across multiple sites with browser control
- Cost-optimized AI workflows through intelligent task delegation between models
asterisk-mcp-server · Use cases
- Security scanning of code snippets in AI assistants
- Full codebase vulnerability analysis
- Verifying security impact of code changes during development
ultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_serverasterisk-mcp-server · Install
Installation
- Install Python 3.10+
- Install using pipx or uvx:
``bash pipx install asterisk-mcp-server # or uvx install asterisk-mcp-server ``
- Configure in your AI assistant (example for Claude Desktop):
``json { "mcpServers": { "asterisk-mcp": { "command": "pipx", "args": [ "run", "asterisk-mcp-server", "--api-url", "https://api.mcp.asterisk.so", "--transport", "stdio", "--key", "YOUR_API_KEY" ], "timeout": 3600 } } } ``