Skip to main content
Glama
fsmw

odoo-mcp-simple

by fsmw

🚀 Servidor MCP Simple para Odoo

Conecta Claude (o cualquier LLM compatible con MCP) con Odoo 18 SaaS.

📦 Instalación

# Instalar dependencias
pip install mcp

# Configurar credenciales
edit config.json

Related MCP server: odooclaw-mcp

🔧 Configuración

Edita config.json con tus credenciales:

{
    "odoo": {
        "url": "https://tu-instancia.odoo.com",
        "database": "tu-database",
        "username": "tu@email.com",
        "password": "tu-password"
    }
}

🎮 Uso

Iniciar el servidor:

python server.py

Configurar en Claude Desktop:

Añade a tu claude_desktop_config.json:

{
  "mcpServers": {
    "odoo-simple": {
      "command": "python",
      "args": ["/ruta/a/odoo-mcp-simple/server.py"]
    }
  }
}

🛠️ Herramientas Disponibles

  • connect_odoo - Conectar con Odoo

  • list_models - Listar modelos disponibles

  • search_records - Buscar registros

  • read_record - Leer un registro específico

  • create_record - Crear nuevo registro

  • update_record - Actualizar registro

  • delete_record - Eliminar registro

  • get_model_fields - Ver campos de un modelo

📝 Ejemplos

Buscar clientes:

search_records(model="res.partner", domain=[["is_company", "=", true]])

Crear contacto:

create_record(model="res.partner", values={"name": "John Doe", "email": "john@example.com"})

🤝 Contribuir

¡PRs bienvenidos! Este es un proyecto de demo educativo.

📄 Licencia

MIT

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    A
    maintenance
    An MCP server that enables AI assistants like Claude to interact with Odoo ERP systems through natural language, allowing users to search, create, update, and manage business data in their Odoo instance.
    1,571 PyPI
    384
    Mozilla Public 2.0
  • A
    license
    D
    quality
    C
    maintenance
    MCP server for Odoo 18 that provides 85 tools for CRUD operations, business actions, and migration workflows, enabling natural language interaction with Odoo ERP.
    85
    6
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    An MCP server that enables AI assistants to interact with Odoo ERP, allowing natural language queries, record creation, updates, and deletions.
    LGPL 3.0
  • A
    license
    Not graded
    quality
    A
    maintenance
    An MCP server that enables AI assistants to interact with Odoo ERP systems, allowing natural language access to business data, CRUD operations, and instance management without requiring Odoo module installation.
    1
    MIT