MCP Catalogs
Home

apifox-mcp vs filesystem

Side-by-side comparison to help you pick between these two MCP servers.

apifox-mcp
by iwen-conf
filesystem
by modelcontextprotocol
Stars★ 33★ 85,748
30d uses
Score4377
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
File SystemDeveloper ToolsProductivity
LanguagePythonTypeScript
Last commit5 mo agothis month

apifox-mcp · Summary

MCP server enabling AI assistants to manage Apifox API projects through natural language commands.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

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

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

apifox-mcp · Install

Installation

  1. **Clone the repository**

``bash git clone <repository_url> cd <repository_name> ``

  1. **Create and activate virtual environment (optional but recommended)**

``bash uv venv # Activate virtual environment # Windows .venv\Scripts\activate # macOS/Linux source .venv/bin/activate ``

  1. **Install dependencies**

```bash # Using uv (recommended for local development) uv sync

# Using pip (traditional way) pip install mcp[cli] requests ```

  1. **Configure environment variables**

``bash export APIFOX_TOKEN="your_token_here" export APIFOX_PROJECT_ID="your_project_id_here" ``

  1. **Run the MCP server**

``bash uv run python -m apifox_mcp.main # or python -m apifox_mcp.main ``

  1. **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" } } } } ``

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.