Skip to main content
Glama
bemade
by bemade

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

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

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
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

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

Latest Blog Posts

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