odoo-model-mcp
Server Quality Checklist
Latest release: v0.1.0
- Disambiguation5/5
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.
Naming Consistency5/5All 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.
Tool Count5/58 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.
Completeness5/5The 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.
Average 4.1/5 across 8 of 8 tools scored. Lowest: 3.5/5.
See the Tool Scores section below for per-tool breakdowns.
- No community issues in the last 6 months
- 0 commits in the last 12 weeks
- No stable releases found
- No critical vulnerability alerts
- No high-severity vulnerability alerts
- No code scanning findings
- CI status not available
This repository is licensed under LGPL 3.0.
This repository includes a README.md file.
No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.
Tip: use the "Try in Browser" feature on the server page to seed initial usage.
Add a glama.json file to provide metadata about your server.
If you are the author, simply .
If the server belongs to an organization, first add
glama.jsonto the root of your repository:{ "$schema": "https://glama.ai/mcp/schemas/server.json", "maintainers": [ "your-github-username" ] }Then . Browse examples.
Add related servers to improve discoverability.
How to sync the server with GitHub?
Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.
To manually sync the server, click the "Sync Server" button in the MCP server admin interface.
How is the quality score calculated?
The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).
Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.
Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).
Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.
Tool Scores
- Behavior2/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses one behavioral trait (does not load the registry), but omits details about read-only nature, filesystem access, permissions, output format, or failure modes. This is a significant gap for a tool with no annotation support.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness4/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and front-loaded, with the core purpose in one sentence. The Args block is somewhat redundant with the schema but is brief and not overly verbose. It earns its place without unnecessary words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness3/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple one-parameter tool with an output schema, the description covers the basic purpose and a key differentiator. However, it lacks usage context (when to use vs sibling tools), details about what 'structure' entails, and any cautionary notes. It is adequate but leaves meaningful gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters2/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has one parameter with no description, and the description's Args section adds only 'Path to the Odoo project root,' which is a marginal clarification over the parameter name 'Project Path.' No examples, constraints, or additional semantics are provided, and schema coverage is 0%, so the description barely compensates.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states a specific action ('Detect an Odoo project's structure') with a distinguishing qualifier ('without loading the registry'). This differentiates it from sibling tools that operate on the registry, such as list_models and dump_registry.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies a clear use case: lightweight inspection of project structure without touching the registry. However, it does not explicitly state when to prefer this tool over alternatives or provide exclusions. The context is clear but lacks explicit guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior2/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must disclose behavioral traits. It only says 'Search models by name or description' and lists args. It does not mention side effects, read-only nature, module loading behavior, or any performance implications. The mention of 'loading' in addons_paths is only about path configuration, not operational behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and well-structured: a one-sentence purpose statement followed by a compact list of arguments with brief explanations. No redundant or filler content; every line adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness3/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has 4 params, no annotations, but an output schema, so return value details are covered elsewhere. The description adequately covers purpose and parameter semantics, but lacks usage guidelines in relation to sibling tools and behavioral transparency (e.g., does it load all modules? is it safe/read-only?). These gaps make it only partially complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Although the schema has 0% description coverage, the description includes an explicit Args list that explains each parameter's purpose (e.g., query matches names/descriptions, addons_paths auto-detected if omitted). This adds meaning beyond the bare schema definitions, covering all four parameters clearly.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with a specific verb ('Search') and resource ('models'), and specifies the matching criteria ('by name or description'). It distinguishes itself from siblings like list_models (which likely lists all models) by indicating a filtering/search behavior.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage context (search with a query) but does not explicitly state when to prefer this tool over alternatives like list_models or model_info. No exclusions or alternative tool mentions are provided, leaving the selection mostly to inference.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior2/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses that addons paths are auto-detected and exclude_modules can skip loading, which are helpful behavioral hints. However, it does not explicitly state that the operation is read-only, mention potential performance costs of loading modules, or describe error behavior (e.g., missing model or invalid project path). This is a significant gap for a tool with no safety annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and front-loaded: a one-sentence summary of the tool's purpose followed by a structured parameter list. Every sentence provides necessary information, and the format is clean and easy to scan.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With an output schema present, return-value documentation is not needed. The description covers the tool's purpose and all input parameters sufficiently, including optionality and default behaviors. However, it lacks edge-case context such as what happens if the model is not found or how the inheritance graph is structured, but given the simplicity and output schema, the description is fairly complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters5/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, but the description fully compensates with a clear Args block. Each of the four parameters has a meaningful explanation, including the dotted model name format, optional addons paths with auto-detection behavior, and the purpose of exclude_modules for skipping loading. This adds substantial value beyond the schema's minimal titles.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Get') and a clear resource ('inheritance graph for a model'), and enumerates graph contents (extending modules, mixin parents, children). This distinguishes it from sibling tools like model_info or field_info, making its purpose unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies the tool is for exploring inheritance relationships, and the parameter context (project path, model name) suggests when it would be used. However, it does not explicitly contrast this tool with alternatives like model_info or method_overrides, nor does it state when not to use it, so usage guidance remains implicit rather than explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
There are no annotations, so the description carries the full burden. It clearly indicates a read-like operation ('Get') and lists the returned metadata, but it does not disclose potential side effects, performance implications, or prerequisites (e.g., needing a valid Odoo project, whether it scans filesystem). The behavior is understandable but not deeply transparent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact: a one-line summary followed by a structured Args list. It front-loads the core purpose and each argument earns its place with brief, relevant context. No redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity, the description covers the essential aspects: what the tool does, what the parameters are, and what is returned (fields, inheritance, methods). The presence of an output schema means return semantics need not be elaborated. However, it could mention that it inspects the codebase and may be affected by excluded modules, which is a minor gap.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description's Args block is essential. It provides meaningful explanations for each parameter, including the crucial detail that addons_paths is optional and auto-detected if omitted. This goes beyond the bare schema titles and effectively compensates for the lack of schema descriptions, though it could add examples or value formats.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb 'Get' and names the exact resource: 'full metadata for an Odoo model'. It further enumerates the contents (fields, inheritance, methods), making its function unambiguous. This distinguishes it from sibling tools that focus on narrower aspects like 'field_info' or 'method_overrides', positioning this as the comprehensive metadata tool.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage when a complete model overview is needed, but it does not explicitly state when to choose this over sibling tools like field_info or method_overrides. No alternatives or exclusions are mentioned, so guidance is only implied.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden of behavioral disclosure. It adds some context by noting that addons paths are 'auto-detected if omitted' and that modules can be skipped, implying a module-loading process. However, it does not disclose potential side effects, performance impacts, or prerequisites beyond the project path, leaving a gap in transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence followed by a well-organized parameter list. It is front-loaded with the purpose and avoids redundant text, making it concise and easy for an agent to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description, combined with the existing output schema, provides sufficient information for invoking the tool correctly. It covers all parameters and their roles. However, it could be enhanced by explicitly guiding when to use this tool over siblings, though the output schema mitigates the need to describe return values.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters5/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The 'Args:' section provides descriptions for all five parameters, which the schema lacks (0% schema coverage). It gives concrete examples (sale.order, amount_total) and explains optionality (auto-detected, skip loading), effectively compensating for the schema's lack of detail and adding significant meaning.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Get detailed info for a field: type, compute, depends, overrides,' which is a specific verb-resource pairing. Sibling tools like list_models and model_info indicate different foci, so field_info is easily distinguishable as the tool for field-level details.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description does not explicitly state when to use this tool versus alternatives. It only describes the function and parameters, leaving usage inference to the agent. The purpose implies its use for field info, but no exclusions or alternative comparisons are provided, making guidance implied rather than explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It transparently states the side effect of writing to disk: 'Writes to a file on disk (where the worker runs) to avoid oversized MCP responses.' It also explains the output format (JSONL) and record types. It does not mention file overwrite behavior or error conditions, but the disclosed side effects are significant and clearly conveyed.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness4/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with a clear lead sentence, a brief explanation of the output format, a usage note, and an organized arg list. It is slightly longer than minimal due to the JSON examples and detailed parameter explanations, but every sentence adds value. The front-loaded purpose and structured format earn it a strong score.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (bulk export, file output, multiple parameters) and the absence of schema descriptions, the description covers the essential aspects: purpose, usage context, side effects, output format, and parameter meanings. An output schema exists, so omitting explicit return values is acceptable. Minor gaps include lack of mention of error handling or resource implications, but overall the description is sufficiently complete for an agent to use the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters5/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It does so thoroughly by documenting each parameter in an Args block: project_path, output_path, include_methods, addons_paths, exclude_modules. It adds semantic detail beyond the schema, such as 'Absolute path where the JSONL file will be written' and 'Default True' for include_methods, which the schema only provides as a title/default. This fully compensates for the missing schema descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb and resource: 'Bulk export the entire registry to a JSONL file.' It distinguishes from sibling tools like list_models and model_info by emphasizing bulk export of the entire registry to a file, rather than per-model queries. The purpose is immediately understandable.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit usage context: 'Designed for initial ingestion: one call replaces thousands of per-model round trips.' This tells the agent when to use this tool versus making many smaller calls. However, it does not name specific alternative tools or explicitly state when not to use it, preventing a perfect score.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the behavioral burden. It discloses return fields, labels itself as cheap to call, and reveals its limitation (no per-field/per-method detail), giving a transparent view of the tool's behavior for a read-only listing operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact and well-structured: a clear purpose sentence, a return list, a cost/limitation note, and a concise Args block. Every line contributes necessary information with no redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness5/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a listing tool, the description is complete: it covers purpose, return values (effectively an output schema), parameter semantics, and limitations. The presence of sibling tools for deeper detail makes this scope sufficient, and the embedded return spec obviates the need for a separate output schema.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters5/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema provides no descriptions for the three parameters, but the description's 'Args:' section adds semantic meaning. For example, 'addons_paths' is explained as 'Optional explicit addons paths (auto-detected if omitted)' and 'exclude_modules' as 'Optional list of module names to skip loading,' fully compensating for the 0% schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with 'List every model in the project registry with lightweight metadata,' which uses a specific verb and resource. It further distinguishes from siblings like model_info and field_info by stating 'does not include per-field or per-method detail,' making the tool's scope unmistakable.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description notes 'Cheap to call' and 'does not include per-field or per-method detail,' which implies it is suitable for broad overviews and not for detailed inspection. While it does not name explicit alternative tools, this context gives reasonable guidance on when to use the tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the transparency burden. It discloses the return structure (modules in MRO order with source locations) and key behaviors like auto-detection of addons paths and the ability to exclude modules. It does not mention error conditions or performance, but for a read-only tool this is sufficient.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise: a single clear sentence followed by a structured list of parameters. There is no redundancy or fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness5/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With an output schema present and a clear parameter list, the description provides all necessary context: what it returns, how to specify inputs, and optional behaviors. It is complete for this tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters5/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, but the description's Args section explains every parameter, including examples for model_name and method_name, and clarifies optionality for addons_paths and exclude_modules. This fully compensates for the schema's lack of descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function with a specific verb ('Get') and resource ('all modules that override a method'), and adds distinct details ('in MRO order, with source locations') that differentiate it from siblings focused on models/fields.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context: it is for finding method overrides in an Odoo project. It does not explicitly mention alternatives or exclusions, but the purpose is unambiguous enough to guide when to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
GitHub Badge
Glama performs regular codebase and documentation scans to:
- Confirm that the MCP server is working as expected.
- Confirm that there are no obvious security issues.
- Evaluate tool definition quality.
Our badge communicates server capabilities, safety, and installation instructions.
Card Badge
Copy to your README.md:
Score Badge
Copy to your README.md:
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