apifox-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
apifox-mcp by iwen-conf | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 33 | ★ 85,748 |
| 30d uses | — | — |
| Score | 43 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 5 mo ago | this month |
apifox-mcp · Summary
MCP server enabling AI assistants to manage Apifox API projects through natural language commands.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
apifox-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" } } } } ``
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything