MCP Catalogs
Home

filesystem vs CoexistAI

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

filesystem
by modelcontextprotocol
CoexistAI
by SPThole
Stars★ 85,748★ 481
30d uses
Score7751
Official
Categories
File SystemDeveloper ToolsProductivity
AI / LLM ToolsDeveloper ToolsSearch
LanguageTypeScriptJupyter Notebook
Last committhis month2 mo ago

filesystem · Summary

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

CoexistAI · Summary

Modular research assistant framework with MCP server integration for web search, YouTube, Reddit, mapping, and GitHub exploration.

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

CoexistAI · Use cases

  • Academic research with automated literature review
  • Content creation from multiple web sources
  • Code analysis for developers
  • Market research via social media platforms
  • Location-based information gathering

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.

CoexistAI · Install

Installation

**Method 1: Docker (Recommended)** Follow instructions in [README.docker.md](README.docker.md) for containerized setup.

**Method 2: Local Setup**

  1. Clone the repository: git clone https://github.com/SPThole/CoexistAI.git coexistai && cd coexistai
  2. Configure model settings in config/model_config.json
  3. Run setup script:

- macOS/Linux zsh: zsh quick_setup.sh - Linux bash: bash quick_setup.sh

**MCP Configuration for Claude Desktop** Add to Claude Desktop config.json:

{
  "mcpServers": {
    "coexistai": {
      "command": "python",
      "args": ["-m", "coexistai.app"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.