ultimate_mcp_server vs apifox-mcp
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | apifox-mcp by iwen-conf | |
|---|---|---|
| Stars | ★ 149 | ★ 33 |
| 30d uses | — | — |
| Score | 85 | 43 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | Developer ToolsAI / LLM ToolsProductivity |
| Language | Python | Python |
| Last commit | 2 mo ago | 5 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.
apifox-mcp · Summary
MCP server enabling AI assistants to manage Apifox API projects through natural language commands.
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
apifox-mcp · Use cases
- Automate API documentation updates in Apifox through AI assistant commands
- Audit API response schemas and completeness in bulk
- Create new API endpoints directly via conversational AI interface
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_serverapifox-mcp · Install
Installation
- **Clone the repository**
``bash git clone <repository_url> cd <repository_name> ``
- **Create and activate virtual environment (optional but recommended)**
``bash uv venv # Activate virtual environment # Windows .venv\Scripts\activate # macOS/Linux source .venv/bin/activate ``
- **Install dependencies**
```bash # Using uv (recommended for local development) uv sync
# Using pip (traditional way) pip install mcp[cli] requests ```
- **Configure environment variables**
``bash export APIFOX_TOKEN="your_token_here" export APIFOX_PROJECT_ID="your_project_id_here" ``
- **Run the MCP server**
``bash uv run python -m apifox_mcp.main # or python -m apifox_mcp.main ``
- **Configure Claude Desktop**
Add to your claude_desktop_config.json: ``json { "mcpServers": { "apifox": { "command": "uv", "args": [ "run", "--directory", "/path/to/apifox-mcp", "python", "-m", "apifox_mcp.main" ], "env": { "APIFOX_TOKEN": "your_token_here", "APIFOX_PROJECT_ID": "your_project_id_here" } } } } ``