Skip to main content
Glama
The-TechX

odoo-mcp

by The-TechX

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
ODOO_URLYesThe URL of the Odoo instance.
ODOO_API_KEYYesAPI key used for authentication with Odoo.
ODOO_DATABASENoOptional database name. If set, sent as X-Odoo-Database header.
ODOO_MCP_MODENoSet to 'read-write' to enable write tools.read-only
ODOO_MCP_DENY_MODELSNoOptional comma-separated list of model names to deny.
ODOO_MCP_ALLOW_MODELSNoOptional comma-separated list of model names to allow.

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
odoo_search_readA

Search and read records from any Odoo model using the permissions of the configured Odoo API user.

odoo_fields_getA

Inspect field metadata for an Odoo model using fields_get.

odoo_createA

Create a record in an Odoo model using the configured Odoo user permissions.

odoo_writeB

Update one or more Odoo records using the configured Odoo user permissions.

odoo_unlinkA

Permanently delete one or more Odoo records using the configured Odoo user permissions.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.8/5.0

Scored across 5 tools

Disambiguation5/5

Each tool maps to a distinct operation: metadata inspection, create, search/read, update, and delete. There is no meaningful overlap between them.

Naming Consistency4/5

All tools share the 'odoo_' prefix, which is good. The second part is mostly a verb, though 'fields_get' and 'search_read' are compound forms while 'create', 'write', and 'unlink' are simple verbs, creating a minor inconsistency.

Tool Count5/5

Five tools is a tight, well-scoped set for a generic Odoo CRUD server. Each tool covers a fundamental operation without unnecessary bloat.

Completeness5/5

The tool set covers the full core lifecycle: read schema, create, read/search, update, and delete. For a generic Odoo model API server, these are the essential operations and no major gaps are apparent.

Maintenance

ActivityMaintained
ResponsivenessNo issues