MCP Catalogs
Home

memory vs mcp-odoo

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

memory
by modelcontextprotocol
mcp-odoo
by tuanle96
Stars★ 85,748★ 316
30d uses
Score7751
Official
Categories
Knowledge GraphAI / LLM ToolsProductivity
Developer ToolsOps & InfraProductivity
LanguageTypeScriptPython
Last committhis monththis month

memory · Summary

An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.

mcp-odoo · Summary

MCP Server for Odoo that provides 24 tools, prompts, and safe write workflows without Odoo-side setup.

memory · Use cases

  • Personalizing AI assistant interactions by remembering user preferences, history, and relationships
  • Building context-aware chat applications that maintain conversation history
  • Creating knowledge bases that persist across AI model sessions

mcp-odoo · Use cases

  • Integrating AI assistants with Odoo to query customer data and invoice status
  • Automating Odoo data analysis and reporting without direct database access
  • Performing safe data operations through approval workflow in automation tools

memory · Install

Installation

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "memory": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-memory"
      ]
    }
  }
}

VS Code

Use one-click installation buttons or manually configure in .vscode/mcp.json:

{
  "servers": {
    "memory": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-memory"
      ]
    }
  }
}

Docker

{
  "mcpServers": {
    "memory": {
      "command": "docker",
      "args": ["run", "-i", "-v", "claude-memory:/app/dist", "--rm", "mcp/memory"]
    }
  }
}

mcp-odoo · Install

Install

The fastest path is using uvx, which fetches the package on demand:

uvx odoo-mcp --health

Or install into your environment:

pip install odoo-mcp
# or: pipx install odoo-mcp

For local development:

git clone https://github.com/tuanle96/mcp-odoo.git
cd mcp-odoo
uv sync --extra dev

Configure

Set connection values in the environment:

export ODOO_URL="https://your-odoo-instance.com"
export ODOO_DB="your-database"
export ODOO_USERNAME="your-user"
export ODOO_PASSWORD="your-password-or-api-key"
export ODOO_TRANSPORT="xmlrpc"

Run

Start the MCP server over stdio:

odoo-mcp

Claude Desktop Configuration

Add to your Claude Desktop config.json:

{
  "mcpServers": {
    "odoo": {
      "command": "odoo-mcp",
      "args": []
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.