MCP Catalogs
Home

filesystem vs odoo-claude-mcp

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

filesystem
by modelcontextprotocol
odoo-claude-mcp
by rosenvladimirov
Stars★ 85,748★ 18
30d uses
Score7745
Official
Categories
File SystemDeveloper ToolsProductivity
Developer ToolsE-commerceOps & Infra
LanguageTypeScriptHTML
Last committhis monththis month

filesystem · Summary

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

odoo-claude-mcp · Summary

Production-grade MCP server connecting Claude to Odoo 15-19 with 197+ tools, multi-tenant support, and Bulgaria localization.

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

odoo-claude-mcp · Use cases

  • Odoo developers can perform live module development with Claude assisting directly on their running instance
  • Business users can ask natural language queries about sales data and get real-time insights from Odoo records
  • Platform operators can host multi-tenant environments with isolated MCP endpoints for each client

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.

odoo-claude-mcp · Install

Installation Options

**Option 1: Docker Compose (Recommended)**

git clone https://github.com/rosenvladimirov/odoo-claude-mcp.git
cd odoo-claude-mcp

# Configure
cp .env.example .env
nano .env                    # set ODOO_URL, DB, credentials, tokens

# Create the shared Cloudflare tunnel network (one-time per host)
docker network create cloudflare-net

# Start the stack
docker compose up -d

# Verify
docker compose ps
curl http://localhost:8084/health

**Option 2: Quick installer script** **Linux / macOS:**

curl -fsSL https://raw.githubusercontent.com/rosenvladimirov/odoo-claude-mcp/2.0/install.sh | bash

**Windows (PowerShell as Administrator):**

iwr -useb https://raw.githubusercontent.com/rosenvladimirov/odoo-claude-mcp/2.0/install.ps1 | iex

**Connect to Claude Code:**

claude mcp add odoo-mcp \
  --url https://your-domain.com/mcp \
  --header "Authorization: Bearer YOUR_TOKEN"
Comparison generated from public README + GitHub signals. Last updated automatically.