odoo-model-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
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
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| model_infoA | Get full metadata for an Odoo model: fields, inheritance, methods. Args: project_path: Path to the Odoo project root model_name: Dotted model name, e.g. 'sale.order' addons_paths: Optional explicit addons paths (auto-detected if omitted) exclude_modules: Optional list of module names to skip loading |
| field_infoA | Get detailed info for a field: type, compute, depends, overrides. Args: project_path: Path to the Odoo project root model_name: Dotted model name, e.g. 'sale.order' field_name: Field name, e.g. 'amount_total' addons_paths: Optional explicit addons paths (auto-detected if omitted) exclude_modules: Optional list of module names to skip loading |
| method_overridesA | Get all modules that override a method, in MRO order, with source locations. Args: project_path: Path to the Odoo project root model_name: Dotted model name, e.g. 'sale.order' method_name: Method name, e.g. '_compute_tax_totals' addons_paths: Optional explicit addons paths (auto-detected if omitted) exclude_modules: Optional list of module names to skip loading |
| model_graphA | Get the inheritance graph for a model: extending modules, mixin parents, children. Args: project_path: Path to the Odoo project root model_name: Dotted model name, e.g. 'sale.order' addons_paths: Optional explicit addons paths (auto-detected if omitted) exclude_modules: Optional list of module names to skip loading |
| search_modelsA | Search models by name or description. Args: project_path: Path to the Odoo project root query: Search string to match against model names and descriptions addons_paths: Optional explicit addons paths (auto-detected if omitted) exclude_modules: Optional list of module names to skip loading |
| list_modelsA | List every model in the project registry with lightweight metadata. Returns: name, description, module, field_count, abstract, transient. Cheap to call; does not include per-field or per-method detail. Args: project_path: Path to the Odoo project root addons_paths: Optional explicit addons paths (auto-detected if omitted) exclude_modules: Optional list of module names to skip loading |
| dump_registryA | Bulk export the entire registry to a JSONL file. Emits one JSON object per line. Record types: {"type": "model", "data": {...model_info...}} {"type": "method_overrides", "model": "...", "method": "...", "overrides": [...]} Designed for initial ingestion: one call replaces thousands of per-model round trips. Writes to a file on disk (where the worker runs) to avoid oversized MCP responses. Args: project_path: Path to the Odoo project root output_path: Absolute path where the JSONL file will be written include_methods: If True, emit method_overrides records for every decorated method. Default True. addons_paths: Optional explicit addons paths (auto-detected if omitted) exclude_modules: Optional list of module names to skip loading |
| detect_project_infoA | Detect an Odoo project's structure without loading the registry. Args: project_path: Path to the Odoo project root |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 8 tools
Each tool targets a distinct aspect of Odoo model introspection: listing vs searching, model-level vs field-level vs method-level detail, graph relationships, bulk export, and project detection. No overlap or ambiguity between tools.
All tool names follow a consistent snake_case pattern with either verb_noun (list_models, search_models, dump_registry, detect_project_info) or noun_info/noun_graph (model_info, field_info, model_graph, method_overrides). The style is uniform and predictable.
8 tools is well-scoped for an Odoo model introspection server. Each tool addresses a clear need without redundancy, and the count is within the ideal 3-15 range.
The tool surface covers the full lifecycle of model exploration: discover (list_models, search_models, detect_project_info), inspect (model_info, field_info, method_overrides), understand relationships (model_graph), and bulk ingest (dump_registry). No obvious gaps for the stated domain.