odoo-model-mcp
Provides tools for querying Odoo's model registry, including searching models, retrieving field details, inspecting inheritance chains, method overrides, and exporting the full registry without requiring a database connection.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@odoo-model-mcpshow me the fields of sale.order"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
odoo-model-mcp
MCP server that exposes Odoo's model registry (fields, inheritance, methods) without needing a database connection.
Point it at any Odoo project directory and get instant, structured answers about
models, fields, method override chains, and inheritance graphs — powered by
Odoo's own MetaModel registry loaded in-memory.
Status: Pre-alpha (0.1.0a1). Works with Odoo 16–19.
How it works
MCP server (this package) receives tool calls via stdio.
It auto-detects the Odoo project structure (odoo-bin, addons paths, venv).
A persistent worker subprocess is spawned in the project's own Python venv, loading the full model registry once (~4 seconds).
Subsequent queries are served over a Unix domain socket in 1–15 ms.
Workers auto-shutdown after 10 minutes of inactivity.
Each project gets its own isolated worker process, so you can work with multiple Odoo versions simultaneously without conflicts.
Related MCP server: MCP Odoo Server
Installation
# With uv (recommended)
uv tool install odoo-model-mcp
# With pip
pip install odoo-model-mcpUsage with Claude Code
Add to your ~/.claude.json (global) or project .claude/settings.local.json:
{
"mcpServers": {
"odoo-model-registry": {
"type": "stdio",
"command": "odoo-model-mcp",
"args": []
}
}
}If installed with uv and not on PATH:
{
"mcpServers": {
"odoo-model-registry": {
"type": "stdio",
"command": "uv",
"args": ["run", "--project", "/path/to/odoo-model-mcp", "odoo-model-mcp"]
}
}
}Tools
All tools accept a project_path pointing to the root of an Odoo project.
Addons paths and the Odoo source location are auto-detected from the project
structure (or can be overridden with addons_paths). Modules can be excluded
by name with exclude_modules (useful when a module has unresolvable Python
dependencies).
detect_project_info
Detect an Odoo project's structure without loading the registry. Returns
odoo_path, addons_paths, python_bin, and odoo_version.
search_models
Search models by name or description substring.
search_models(project_path="/path/to/project", query="sale.order")model_info
Full metadata for a model: all fields (with types, compute methods, related fields, module overrides), inheritance chain, extending modules (from MRO), and decorated methods.
model_info(project_path="/path/to/project", model_name="sale.order")field_info
Detailed info for a single field: type, compute method, depends, store, index, related, groups, and which modules defined or overrode it.
field_info(project_path="/path/to/project", model_name="sale.order", field_name="amount_total")method_overrides
Override chain for a method across the MRO, with source file locations (file path and line number) for each override.
method_overrides(project_path="/path/to/project", model_name="sale.order", method_name="_compute_amounts")model_graph
Inheritance graph around a model: which modules extend it (same _name),
mixin parents (different _name), delegation parents (_inherits), and child
models that inherit from it.
model_graph(project_path="/path/to/project", model_name="sale.order")list_models
Lightweight listing of every model in the registry (name, description, module, field count, abstract/transient flags). Use when you need a catalog but not per-field detail.
list_models(project_path="/path/to/project")dump_registry
Bulk-export the entire registry as JSONL to a file on disk. One call replaces thousands of per-model round trips; intended for downstream pipelines (indexers, embedders, static analysis). Writes records of two types:
{"type": "model", "data": {...model_info...}}— one per model{"type": "method_overrides", "model": "...", "method": "...", "overrides": [...]}— one per decorated method, with file/line for each override in the MRO chain
dump_registry(project_path="/path/to/project", output_path="/tmp/registry.jsonl")Project auto-detection
The server detects project structure automatically:
Odoo source: looks for
odoo-binor theodoo/Python packageAddons paths: parses
odoo.conf/.odoorc, or scans for directories containing modules (subdirs with__manifest__.py)Python venv: checks
.venv/,venv/,env/Odoo version: reads from
.env(ODOO_VERSION=) orodoo/release.py
Architecture
Claude Code
|
| stdio (MCP protocol)
v
odoo-model-mcp server (lightweight Python process)
|
| Unix domain socket (JSON lines)
v
Worker process (project's own venv)
- Loads Odoo registry via MetaModel._build_model()
- Resolves full inheritance (MRO, __bases__, _build_model_attributes)
- Serves queries from in-memory registryDevelopment
git clone https://github.com/bemade/odoo-model-mcp.git
cd odoo-model-mcp
uv sync
uv run pytestLicense
LGPL-3.0-only
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityFmaintenanceA bridge server that provides access to an Odoo shell environment, allowing execution of Python code within an Odoo database context for model introspection and database operations.4MIT
- Alicense-qualityDmaintenanceEnables AI assistants to interact with Odoo databases via XML-RPC and JSON-RPC for performing CRUD operations and managing modules. It supports advanced features like domain-based searching, field metadata inspection, and administrative task execution.12MIT
- Alicense-qualityDmaintenanceEnables seamless interaction with Odoo instances through the Model Context Protocol, supporting CRUD operations, custom method execution, and real-time updates. It offers versatile communication via stdio and HTTP protocols, including support for streaming and Server-Sent Events.8MIT
- Flicense-qualityDmaintenanceEnables interaction with Odoo instances via XML-RPC, supporting CRUD operations and custom model queries through natural language.
Related MCP Connectors
Search and browse every MCP server in the Model Context Protocol registry.
Dev-registry data: npm/PyPI/Docker/VS Code packages, dep graphs, vulns, 50+ ecosystems.
Software component catalog: search your org's services, docs, APIs, dependencies, and ownership.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bemade/odoo-model-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server