Skip to main content
Glama
management-cmyk

Odoo MCP Server

Odoo MCP Server

A Model Context Protocol server for Odoo. Connect Claude (or any MCP client) to your own Odoo ERP and query, report on, and optionally modify your data in natural language.

Works with any Odoo model. Safe by default: read-only unless you explicitly enable writes. Your credentials stay on your machine — nothing is stored or sent anywhere except your own Odoo instance.

Features

  • 🔍 Generic access to any model — search, read, count, introspect fields, list models

  • 📊 Ready-made business tools — overdue invoices, sales summary, low-stock products, top customers

  • 🔒 Read-only by default — create/update/delete only when you opt in (ODOO_ENABLE_WRITES=true)

  • 🔑 Your data, your machine — configured entirely through environment variables

Related MCP server: Odoo MCP Server

Install

Add this to your MCP client config (e.g. Claude Desktop or Claude Code):

{
  "mcpServers": {
    "odoo": {
      "command": "npx",
      "args": ["-y", "odoo-mcp-connector"],
      "env": {
        "ODOO_URL": "https://your-company.odoo.com",
        "ODOO_DB": "your-database",
        "ODOO_USERNAME": "you@example.com",
        "ODOO_API_KEY": "your-odoo-api-key"
      }
    }
  }
}

Getting an Odoo API key

In Odoo: Settings → Users → (your user) → Account Security → New API Key. Paste the generated key into ODOO_API_KEY. (A password also works, but an API key is safer and revocable.)

Enabling writes

Read-only is the default. To let the model create, update, or delete records, add:

"ODOO_ENABLE_WRITES": "true"

⚠️ Odoo holds real business data. Enable writes only when you accept that the model can create, modify, or delete records — always within your Odoo user's own permissions.

Tools

Always available (read-only)

Tool

Purpose

odoo_search_read

Search + read records from any model

odoo_read

Read records by ID

odoo_count

Count records matching a domain

odoo_fields

Introspect a model's fields (name, type, label)

odoo_list_models

List available models

odoo_overdue_invoices

Unpaid customer invoices past their due date

odoo_sales_summary

Revenue + order count over a date range

odoo_low_stock

Products at/below a quantity threshold

odoo_top_customers

Top customers by invoiced revenue

Only when ODOO_ENABLE_WRITES=true

Tool

Purpose

odoo_create

Create a record

odoo_write

Update records by ID

odoo_unlink

Delete records by ID (irreversible)

odoo_call

Call an arbitrary model method

Configuration reference

Variable

Required

Default

Description

ODOO_URL

yes

Your Odoo base URL

ODOO_DB

yes

Database name

ODOO_USERNAME

yes

Login (email)

ODOO_API_KEY

yes

API key (or password)

ODOO_ENABLE_WRITES

no

false

Set "true" to allow writes

ODOO_TIMEOUT_MS

no

30000

Per-request timeout (ms)

Development

npm install
npm test       # vitest — fully mocked, no live Odoo needed
npm run build

License

MIT © Falak Sarhan Saade

Available Tools

9 tools
odoo_countC

Count records matching a domain.

ParametersJSON Schema
NameRequiredDescriptionDefault
modelYes
domainNoSearch domain. Omit to count all records.

TDQS

C2.6/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, and the description does not disclose any behavioral traits such as permissions required, performance implications, or potential side effects. The description is minimal and leaves the agent uninformed about important constraints.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence, which is concise but lacks structure. It could include additional critical information without becoming overly long, so it scores moderately.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has no output schema and no annotations, the description should at least indicate the return type (e.g., an integer count) or any limitations. It fails to provide a complete picture, leaving the agent to guess the result format.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 50%: the 'model' parameter lacks any description, and the 'domain' parameter has a minimal description ('Search domain. Omit to count all records.'). The tool description adds no additional meaning beyond what the schema already provides.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description states 'Count records matching a domain' which clearly identifies the verb (count) and resource (records). It distinguishes from sibling tools like odoo_search_read which retrieves data rather than counting.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool versus alternatives such as odoo_search_read or odoo_read. There is no mention of prerequisites, context, or situations where counting is preferable to reading.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

odoo_fieldsA

Introspect a model's fields — names, types, labels, relations. Useful before querying an unfamiliar model.

ParametersJSON Schema
NameRequiredDescriptionDefault
modelYes
attributesNoWhich field attributes to return.

TDQS

A3.8/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description indicates a non-destructive, read-only operation (introspecting fields). With no annotations provided, the description adequately conveys that it is safe to call. However, it does not disclose potential side effects, rate limits, or response behavior beyond listing attributes.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is exceptionally concise: two sentences that cover the function and usage context without any extraneous words. Every sentence adds value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool has no output schema and no annotations, so the description must cover essential behavioral and parameter details. It explains the purpose and usage context adequately but lacks detail on parameter values and return format. For a simple introspection tool, it is minimally complete but has clear gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has two parameters: 'model' (undocumented in schema) and 'attributes' (described as 'Which field attributes to return'). The description mentions 'names, types, labels, relations' as possible returns, but does not clarify valid values for the 'attributes' parameter or the format of the 'model' parameter. With only 50% schema coverage, the description should compensate but does not.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Introspect a model's fields — names, types, labels, relations.' This specifies the verb (introspect), resource (model's fields), and the type of information returned. It also distinguishes itself from sibling data-retrieval tools like odoo_read and odoo_search_read, which operate on records rather than field metadata.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides a clear usage context: 'Useful before querying an unfamiliar model.' This implies the tool is for preliminary investigation. However, it does not explicitly state when not to use it or mention alternatives, such as using odoo_list_models for model discovery.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

odoo_list_modelsB

List available Odoo models, optionally filtered by a substring of the technical name.

ParametersJSON Schema
NameRequiredDescriptionDefault
filterNoSubstring to match the model technical name, e.g. 'account'.

TDQS

B3.3/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, and the description does not disclose behavioral traits such as read-only nature, authentication requirements, or response format. The action 'list' implies a read operation but lacks details on side effects or limitations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence with no wasted words. It efficiently conveys the purpose and optional filter.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema and no annotations, the description is minimal. It does not explain the return format, pagination, or error handling. For a simple list tool it is adequate but incomplete for richer context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with a detailed schema description for the single 'filter' parameter. The tool description merely echoes the substring filtering idea without adding new meaning, so it scores at the baseline of 3.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action 'List available Odoo models' and the optional filter by substring. It is specific and distinguishes from sibling tools like odoo_fields (which lists fields) or odoo_search_read (which searches records).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives like odoo_fields or odoo_count. No explicit context or exclusions are given, leaving the agent to infer usage.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

odoo_low_stockB

List storable products at or below a quantity threshold — restock alerts.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax products (default 100).
thresholdNoFlag products with on-hand quantity ≤ this (default 5).

TDQS

B3.4/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must carry the full burden. It only states the basic operation without disclosing behavioral traits such as read-only nature, pagination, error handling, or permission requirements.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that front-loads the key action and resource. It is brief but not under-specified, though a bit more context could be added without losing conciseness.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema, the description does not explain return values. For a simple list tool it is minimally adequate, but lacks details on default sorting, response structure, or behavior with no matching products.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% (both parameters documented). The description mentions 'quantity threshold' which maps to the threshold parameter but adds no additional meaning beyond the schema. Baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description specifies the verb 'List' and the resource 'storable products' with a clear condition 'at or below a quantity threshold'. It also adds context with 'restock alerts', distinguishing it from sibling tools like generic search or read.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for checking low stock but does not explicitly state when to use this tool versus alternatives or when not to use it. No guidance on context or exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

odoo_overdue_invoicesB

List unpaid customer invoices past their due date — an instant accounts-receivable / cash-flow view.

ParametersJSON Schema
NameRequiredDescriptionDefault
as_ofNoReference date YYYY-MM-DD for 'overdue' (default: today).
limitNoMax invoices (default 50).
partner_idNoFilter to a single customer by partner ID.

TDQS

B3.2/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries full burden but only states 'instant' and 'view', implying read-only but not explicitly. No disclosure of side effects, rate limits, or data freshness.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Single sentence with key information front-loaded. Efficient but could be slightly more structured.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Adequate for a straightforward list tool with well-documented parameters, but lacks explanation of return format or how output can be used. No output schema makes this gap notable.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema provides 100% coverage with parameter descriptions; the tool description adds no extra semantic context beyond what the schema already offers.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly specifies the action ('List unpaid customer invoices past their due date') and the resource ('accounts-receivable / cash-flow view'), distinguishing it from sibling tools like odoo_search_read or odoo_read which are more general.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool versus alternatives (e.g., odoo_search_read for overdue invoices). Does not mention prerequisites or when not to use it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

odoo_readC

Read specific records by their IDs.

ParametersJSON Schema
NameRequiredDescriptionDefault
idsYesRecord IDs to read.
modelYes
fieldsNo

TDQS

C2.4/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must convey behavior. It only says 'read', but doesn't disclose read-only nature, potential errors, or any side effects. This is insufficient.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is very short (one sentence), which is concise, but it lacks important context, making it more under-specified than efficient.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema, no annotations, and low parameter coverage, the description is incomplete. It doesn't explain return values, field selection, or model specification.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is only 33% (only 'ids' has description). The description adds no parameter detail beyond what's in the schema, failing to compensate for the low coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states the verb 'read' and resource 'specific records by their IDs', but it doesn't specify the context (Odoo models) or differentiate from sibling tools like odoo_search_read.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool versus alternatives. The sibling list includes odoo_search_read, but the description provides no comparison or context for selection.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

odoo_sales_summaryA

Total revenue and order count over a date range, from sales orders (default) or POS orders.

ParametersJSON Schema
NameRequiredDescriptionDefault
sourceNo'sale' = sale.order (default), 'pos' = pos.order.
date_toYesEnd date YYYY-MM-DD (inclusive).
date_fromYesStart date YYYY-MM-DD (inclusive).

TDQS

A3.9/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description adds useful context (default source, inclusive dates) but does not disclose output format or whether it is read-only. Since annotations are absent, more detail on behavior (e.g., no destructive action) would help.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Single sentence, no unnecessary words, efficiently communicates the tool's function.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema, the description mentions output (total revenue and order count) but lacks details on format (single object, two fields?), currency, or whether calculations are based on confirmed orders. Adequate for basic understanding but not fully complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema already covers parameters with descriptions (100% coverage). The description adds value by explaining the overall purpose and default source, but does not significantly enhance individual parameter meaning beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it computes total revenue and order count over a date range, with source selection (sale or POS). It distinguishes this aggregate tool from sibling tools like odoo_search_read or odoo_overdue_invoices.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies when to use (for summary metrics over a date range) and notes the default source. It does not explicitly exclude alternatives, but sibling names make the distinction clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

odoo_search_readB

Search and read records from any Odoo model in one call. Returns matching records with the requested fields.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax records (default 50).
modelYesModel technical name, e.g. 'res.partner', 'sale.order', 'account.move'.
orderNoSort spec, e.g. 'create_date desc'.
domainNoOdoo search domain, e.g. [["is_company","=",true]]. Omit for all records.
fieldsNoField names to return. Omit for all fields.
offsetNoRecords to skip (default 0).

TDQS

B3.4/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description must fully disclose behavioral traits. It only states the operation and return type, omitting safety (read-only nature), potential side effects, pagination behavior, or authentication requirements. The description adds little beyond the name and schema.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Single sentence that immediately conveys purpose. No redundant words. Perfectly concise and front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a search tool with 6 parameters and no output schema, the description combined with the detailed schema (e.g., domain example, limit default) provides sufficient context. However, it could note that it is non-destructive or mention the default page size. Almost complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% (all parameters have descriptions in the input schema). The tool description adds no additional parameter-level detail, so it meets the baseline but does not exceed it.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb ('Search and read records'), the resource ('any Odoo model'), and the outcome ('Returns matching records with the requested fields'). It differentiates from sibling tools like odoo_read (single record by ID) by emphasizing the combined search and read capability in one call.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit guidance on when to use this tool vs. alternatives (e.g., odoo_read for exact ID lookups, odoo_count for just counting, or odoo_fields for schema). It does not specify prerequisites, limitations, or cases where it should not be used.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

odoo_top_customersA

Top customers ranked by invoiced revenue over a date range.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoHow many customers to return (default 10).
date_toYesEnd date YYYY-MM-DD (inclusive).
date_fromYesStart date YYYY-MM-DD (inclusive).

TDQS

A3.7/5.0
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 does not disclose that the tool is read-only, lacks destructive side effects, or whether special permissions are required. While the tool name implies a query, the description omits these behavioral details, which is a gap for safe usage.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence with no redundant words. It front-loades the core purpose immediately.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple query tool with three parameters and no output schema, the description covers the core function but lacks details on return format (e.g., fields provided), pagination, or behavioral safety. An agent may need additional context to fully understand the tool's output.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already covers all parameters with descriptions (100% coverage). The description adds value by explaining that the date range filters invoiced revenue and that customers are ranked by that revenue, providing context beyond the schema's field labels.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool returns top customers ranked by invoiced revenue over a date range. This is a specific verb+resource+scope, and it distinguishes itself from sibling tools like odoo_search_read (generic read) and odoo_sales_summary (summary, not customer-specific).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies the use case (date-range revenue ranking) but does not explicitly state when to use it vs alternatives or when not to use it. There are no exclusion criteria or references to other tools in the description.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 9 tool updatesv0.1.0
    • First observedodoo_count
    • First observedodoo_fields
    • First observedodoo_list_models
    • First observedodoo_low_stock
    • First observedodoo_overdue_invoices
    • First observedodoo_read
    • First observedodoo_sales_summary
    • First observedodoo_search_read
    • First observedodoo_top_customers

TDQS

B3.2/5.0

Scored across 9 tools

Disambiguation5/5

Each tool has a distinct purpose: generic data access (search_read, read, count, fields, list_models) and specific business reports (overdue_invoices, sales_summary, low_stock, top_customers). No overlap between tools.

Naming Consistency5/5

All tools follow the 'odoo_<action>' pattern in snake_case. Verbs are clear and consistent (search_read, read, count, list_models) and report names are descriptive nouns. No deviation.

Tool Count4/5

With 9 tools, the set covers basic CRUD operations and several key business reports, which is reasonable for an Odoo MCP server. It is slightly on the lower side but not inadequate.

Completeness2/5

Significant gaps exist: no create, update, or delete operations for records. The server is largely read-only, which limits agents from performing many real-world tasks like updating invoices or creating sales orders.

Maintenance

ActivitySlowing
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    A
    maintenance
    An MCP server that enables AI assistants like Claude to interact with Odoo ERP systems through natural language, allowing users to search, create, update, and manage business data in their Odoo instance.
    384
    Mozilla Public 2.0
  • F
    license
    Not graded
    quality
    D
    maintenance
    Enables LLMs to interact with Odoo ERP systems through MCP protocol. Supports multi-server architecture with secure authentication, allowing natural language access to Odoo data, resources, and business operations.
    -
  • A
    license
    A
    quality
    D
    maintenance
    Enables AI assistants to interact with Odoo data using natural language to search, read, create, and update records. It acts as a secure bridge between MCP clients and Odoo instances version 17.0 through 19.0.
    11
    Apache 2.0
  • F
    license
    Not graded
    quality
    D
    maintenance
    MCP server to connect Claude with Odoo 18, enabling CRUD operations on Odoo models via natural language.
    2
    -