Odoo MCP Server
The Odoo MCP Server connects any Odoo 16+ instance to AI agents via the Model Context Protocol — no Odoo-side setup required — providing read, write, diagnostic, migration, and audit capabilities.
Read & Discovery
list_models– List all model technical names and labelsget_model_fields– Retrieve field metadata for any modelsearch_records/read_record– Bounded, read-only searches and single-record readsaggregate_records– Server-side groupby/sum/count/avg aggregationssearch_employee/search_holidays– Search employees or leave recordsget_odoo_profile– Server version, user context, transport, and installed modulesschema_catalog– Build a bounded model catalog with optional field metadatabuild_domain– Build and validate Odoo domains from structured conditions
Safe Write Workflow
preview_write– Preview acreate,write, orunlinkwithout executing itvalidate_write– Validate a write payload against livefields_getmetadataexecute_approved_write– Execute a token-approved write (requiresODOO_MCP_ENABLE_WRITES=1)execute_method– Execute custom model methods (allowlist or broad-mode gated)chatter_post– Post chatter messages on anymail.threadrecord
Diagnostics
diagnose_odoo_call– Diagnose a model call without executing itdiagnose_access– Analyze ACL and record-rule visibility for the current userinspect_model_relationships– Inspect relationship fields, required fields, and write hints
Migration Helpers
generate_json2_payload– Convert XML-RPC-style calls into JSON-2 request previews (Odoo 19+)upgrade_risk_report– Surface transport, method, and migration risks across Odoo versions
Audit & Planning
scan_addons_source– Scan local addon source code without importing itfit_gap_report– Classify requirements into fit/gap implementation bucketsbusiness_pack_report– Report expected modules, models, and discovery calls for sales, CRM, inventory, accounting, or HR
Utility & Infrastructure
health_check– Report the server's runtime safety postureSupports XML-RPC (Odoo 16–19) and External JSON-2 (Odoo 19+) transports
Streamable HTTP/SSE transport for non-stdio clients
5 reusable agent prompts (diagnostics, fit/gap, JSON-2 migration, safe writes, module audits)
4 resource URIs for browsing models, fields, and records
DNS-rebinding protection and host/origin allowlists for HTTP deployments
Provides comprehensive access to Odoo ERP systems, allowing interaction with Odoo models, records, and methods. Enables searching, reading, creating, updating, and deleting records, as well as executing custom methods on any Odoo model.
Implements XML-RPC communication for secure connections to Odoo instances, enabling the transmission of data between the MCP server and Odoo systems.
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 MCP Serversearch for employees named John"
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 MCP
ERPipe is the managed Odoo MCP gateway from the maintainer of erpipe-org/mcp-odoo, formerly tuanle96/mcp-odoo; the Python project remains the self-hosted server.
Want ChatGPT / Claude on a stable remote URL without running a process?
ERPipe is the hosted product from the same author — free v1 public beta, live in production.
Sign up → add HTTPS Odoo instance(s) → connect once tohttps://mcp.erpipe.com/mcp(workspace OAuth, multi-instance, gated writes, audit dashboard).
This repo stays the local / self-host Python server (full 41-tool surface, stdio, Docker). TypeScript building blocks:erpipe.
This repo ( | ||
Run where | Your laptop / Docker / CI | Cloudflare (managed) |
Install |
| Sign up at erpipe.com |
MCP URL | stdio or local HTTP |
|
Clients | Claude Code, Cursor, local agents | ChatGPT (primary), Claude, Cursor, any remote MCP client |
Tool surface | 41 tools + 11 prompts (full local pack) | 43 tools + 7 prompts (workspace multi-instance + governance; catalog) |
Multi-instance | Config file / env on your machine | Dashboard + explicit |
Writes | Env gate + approval tokens (+ optional MCP elicitation) | Default OFF · HITL inbox · journal · field policy |
Audit | Optional JSONL file | Dashboard + D1 audit trail |
Cost | Free forever (MIT) | Free v1 beta (fair-use caps) |
Odoo MCP turns any Odoo 16+ database into a Model Context Protocol server — using only your existing credentials. No App Store module, no permission setup, no admin access required. Built for local agents, IDEs, and automation tools that need real Odoo context without hand-rolled scripts or unsafe direct write access.
It speaks XML-RPC for Odoo 16-18 and External JSON-2 for Odoo 19+. It exposes a compact MCP surface with read tools, diagnostics, schema discovery, migration helpers, local addon scanning, and a gated write workflow. One server can serve multiple named Odoo instances at once.
Try it in 30 seconds
Once configured (see Setup), ask your agent things like:
"Show me all customers from Spain with unpaid invoices."
"Find products with stock below 10 units in the main warehouse."
"Audit the
custom_billingaddon for upgrade risks before we move to Odoo 19."
Related MCP server: odoo-mcp
Highlights
Capability | What it gives you |
41 MCP tools | Read records and attachments, aggregate server-side, post chatter, inspect schema, build domains, scan addons, diagnose calls and upgrade logs, check data quality, access rules, resolve model renames, validate writes, and fan out across instances. |
Field-level ACL | Opt-in per-instance, per-model field allow/deny enforced on every read path (records, aggregates, knowledge index, resources). First open-source Odoo MCP with it. See docs/field-acl.md. |
Cross-instance queries | Read-only fan-out across many client DBs with merged, attributed, partial-failure-tolerant results — no warehouse, no sync. See docs/partner-playbook.md. |
Workflow prompts | 11 prompts including 6 end-to-end business workflows (invoice approval, PO match, onboarding, expense review, month-end close, pre-migration data quality) that route writes through the gate. |
Background tasks |
|
Local-first knowledge search |
|
Accounting pack |
|
Agent Skills pack | 4 business-workflow skills (data-quality gate, migration copilot, month-end close, agency fleet review) — |
Tool plugins | Ship your own tools as pip packages ( |
Rate limiting | Opt-in sliding-window budget per instance and tool ( |
Multi-instance | One server, several named Odoo instances — optional |
5 agent prompts | Reusable workflows for failed calls, fit/gap workshops, JSON-2 migration, safe writes, and module audits. |
Odoo 16-19 coverage | XML-RPC by default, JSON-2 opt-in for Odoo 19. |
MCP 2026-07-28 | Stateless modern protocol with |
Streamable HTTP | Local HTTP/SSE support for clients that do not use stdio. |
Smart field selection |
|
Server-side aggregation |
|
Chatter integration |
|
Locale plumbing |
|
Structured logging | JSON formatter and rotating file handler via |
Safe writes | Direct |
Human-in-the-loop approval |
|
Audit trail |
|
Resilience | Read-only calls retry connection errors with exponential backoff; schema caches are TTL- and LRU-bounded; |
Real smoke tests | Docker Compose validation boots disposable Odoo 16.0, 17.0, 18.0, and 19.0 stacks, including restricted users, custom record rules, and packaged addon XML install/update. |
Why Odoo MCP
Trait | Odoo MCP | Other MCP-Odoo bridges |
Setup steps on Odoo side | 0 — works with any Odoo 16+ instance using credentials you already have. | Often require installing an App Store module, configuring enabled models, and granting per-tool permissions. |
Safe write workflow | Approval token + live | Often expose direct |
Diagnostics |
| Usually CRUD only. |
Transport | XML-RPC (16+) and External JSON-2 (Odoo 19+). Ready for the Odoo 22 XML-RPC removal years early. | Usually XML-RPC only — deprecated since Odoo 19, removed in Odoo 22. |
Migration helpers |
| None. |
Multi-instance | Named instances in one config file, per-tool routing, tokens and caches isolated per instance. | Usually one global connection per server process. |
Agent prompts | 5 ready-made prompts for diagnose / fit-gap / JSON-2 migration / safe-write / module-audit. | Usually none. |
HTTP transport security | DNS-rebinding protection, host/origin allowlists, local-bind by default. | Often missing. |
Real Odoo smoke tests | Docker Compose harness boots disposable Odoo 16/17/18/19 stacks per release. | Often mock-based only. |
Framework examples | Copy-paste adapters for Cursor, Claude Code, OpenAI Agents, LangGraph, CrewAI, and n8n in | None. |
Audit & approval UX | JSONL audit trail + native elicitation confirm forms — without installing anything in Odoo. | Audit features usually require an Odoo-side module. |
Comparing specific projects? See the per-project breakdown in docs/comparison.md.
Setup
Two paths to a working server: set it up yourself, or paste one prompt and let your coding agent do it for you.
For humans
The fastest path is the interactive wizard via uvx, which fetches the package on demand:
uvx odoo-mcp --setupThe wizard asks for your Odoo URL, database, and credentials, tests the connection live, writes the config file, and prints ready-to-paste snippets for Claude Code, Cursor, and Claude Desktop. Prefer a quick smoke check instead? uvx odoo-mcp --health.
Using Claude Desktop on macOS? It reads MCP configuration from:
~/Library/Application Support/Claude/claude_desktop_config.jsonUse an absolute Python path because GUI apps may not inherit your shell PATH:
{
"mcpServers": {
"odoo": {
"command": "/opt/homebrew/bin/python3",
"args": ["-m", "odoo_mcp"],
"env": {
"ODOO_URL": "https://your-odoo-instance.com",
"ODOO_DB": "your-database",
"ODOO_USERNAME": "your-user",
"ODOO_PASSWORD": "your-password-or-api-key",
"ODOO_TRANSPORT": "xmlrpc"
}
}
}
}More client configs (Windsurf, VS Code, Zed, Continue.dev, Streamable HTTP) are in docs/client-configs.md.
Other ways to install:
pip install odoo-mcp
# or: pipx install odoo-mcpPrefer a container? See Docker. For local development:
git clone https://github.com/erpipe-org/mcp-odoo.git
cd mcp-odoo
uv sync --extra devFor AI agents
Paste this into Claude Code, Cursor, Codex, or any coding agent and it will install the server for you:
Install the odoo-mcp MCP server (https://github.com/erpipe-org/mcp-odoo) in this environment:
1. Ask me for my Odoo URL, database name, username, and password or API key.
Treat them as secrets: never echo, print, or log these values.
2. Register the server as a stdio MCP server:
- Claude Code: claude mcp add odoo --env ODOO_URL=<url> --env ODOO_DB=<db>
--env ODOO_USERNAME=<user> --env ODOO_PASSWORD=<secret> -- uvx odoo-mcp
- Any other client: write the equivalent config with "command": "uvx",
"args": ["odoo-mcp"], and the same four env vars.
3. Verify the install: run `uvx odoo-mcp --health`, then call the health_check
MCP tool and confirm the Odoo connection is reachable.
4. Leave writes disabled (do not set ODOO_MCP_ENABLE_WRITES) unless I
explicitly ask you to enable them.
Full machine-readable instructions: https://github.com/erpipe-org/mcp-odoo/blob/main/llms-install.mdAlready know your client? One-liners and config snippets:
claude mcp add odoo --env ODOO_URL=https://mycompany.odoo.com --env ODOO_DB=mycompany \
--env ODOO_USERNAME=agent@mycompany.com --env ODOO_PASSWORD=your-api-key -- uvx odoo-mcpClaude Code
.mcp.jsonand Codex CLIconfig.toml:examples/README.mdCursor
.cursor/mcp.json+ agent rules:examples/cursor/Windsurf, VS Code, Zed, Continue.dev, Cline, Streamable HTTP, Docker:
docs/client-configs.mdMachine-readable install guide for agents (Cline-style):
llms-install.md
Framework SDKs
Copy-paste-runnable integrations live in examples/:
Client | Example |
Cursor |
|
Claude Code / Codex CLI | snippets in |
OpenAI Agents SDK |
|
LangGraph |
|
CrewAI |
|
n8n |
|
Configuration reference
Set connection values in the environment:
export ODOO_URL="https://your-odoo-instance.com"
export ODOO_DB="your-database"
export ODOO_USERNAME="your-user"
export ODOO_PASSWORD="your-password-or-api-key"
export ODOO_TRANSPORT="xmlrpc"For Odoo 19 JSON-2:
export ODOO_TRANSPORT="json2"
export ODOO_API_KEY="your-odoo-api-key"
export ODOO_JSON2_DATABASE_HEADER="1"ODOO_JSON2_DATABASE_HEADER=1 sends X-Odoo-Database on JSON-2 calls. Set it to 0 only when host or dbfilter routing already selects the intended database.
Optional environment variables:
Variable | Default | Effect |
| unset | Explicit path to a config file, checked before the standard locations. |
| unset | Inject |
|
| Cap for smart-field selection when caller omits |
|
| Process logger level (DEBUG/INFO/WARNING/ERROR/CRITICAL). |
|
| Truthy → emit JSON-formatted log lines. |
| unset | Path → enable rotating file handler (10MB × 3 backups). |
|
| Required for |
| empty | Exact |
|
| Version-controllable side-effect allowlist with review metadata (see |
|
| Broad mode for |
| unset | Path → append one JSONL line per write-path event (preview/validate/execute/chatter), tokens stored as digests. |
|
| Truthy → |
|
| Extra attempts for read-only calls on connection errors (0–5). Writes never retry. |
|
| Base retry backoff seconds; doubles per retry. |
|
| Schema cache entry lifetime in seconds. |
|
| Max schema cache entries (LRU eviction). |
|
|
|
|
| Sliding window length in seconds for rate tracking. |
|
| Calls allowed per window per |
|
| Worker threads for |
|
| Max retained background tasks (finished tasks evicted oldest-first). |
|
| Seconds a finished background task result stays pollable. |
|
| Total documents allowed across all local BM25 knowledge indexes. |
| shared policy file | Field ACL policy (a |
|
| Bounded concurrency for cross-instance fan-out tools. |
|
| Truthy → |
|
| Truthy → permit non-local HTTP binds (still requires external auth/TLS). |
| local | CSV allowlists for HTTP transports. |
|
| Download cap for |
| unset | Colon-separated local directories |
|
| Size cap for |
| unset | OAuth 2.1: authorization server issuer. With the two vars below, the HTTP transport becomes a protected resource server (RFC 9728 metadata + bearer validation). |
| unset | RFC 7662 token introspection endpoint of the authorization server. |
| unset | Canonical URL of this MCP server (RFC 8707 audience check when the AS binds tokens). |
| empty | CSV scopes required on every request. |
| unset | Credentials for the introspection call when the AS requires client auth. |
|
| Truthy → reject tokens whose introspection response has no |
|
| Truthy → reject introspection responses without an |
|
| Seconds to cache introspection verdicts ( |
| unset | CSV entry-point names to load as third-party tool plugins (group |
| unset | CSV fnmatch globs trimming the registered tool surface per deployment (small agents drown in 41 tools). Removed names listed in |
| unset | Plain-text file appended to the server-level MCP |
You can also use odoo_config.json:
{
"url": "https://your-odoo-instance.com",
"db": "your-database",
"username": "your-user",
"password": "your-password-or-api-key"
}Multiple Odoo instances
One server can talk to several Odoo databases. Add an instances map to your config file (auto-detected — a file without instances keeps the flat single-instance shape above):
{
"default": "acme",
"instances": {
"acme": {
"url": "https://acme.odoo.com",
"db": "acme",
"username": "bot",
"api_key": "...",
"transport": "json2"
},
"globex": {
"url": "https://globex.odoo.com",
"db": "globex",
"username": "bot",
"password": "...",
"lang": "fr_FR",
"timeout": 60
}
}
}Every read/write tool accepts an optional
instanceparameter; omitted → thedefaultinstance.defaultitself is optional when only one instance is defined.Each entry supports the same keys as the flat config (
url,db,username,password,api_key,transport,json2_database_header,lang) plustimeoutandverify_ssl. Instance entries are self-contained: credentials and transport never fall back to env vars (so one instance can never inherit another deployment'sODOO_API_KEY). Only non-credential knobs (ODOO_TIMEOUT,ODOO_VERIFY_SSL,ODOO_LOCALE) act as fallback defaults for entries that omit them. Env overrides likeODOO_TRANSPORT/ODOO_API_KEYstill apply to legacy flat configs, as before.ODOO_CONFIG_FILE=/path/to/config.jsonpoints at an explicit config file, checked before./odoo_config.json,~/.config/odoo/config.json, and~/.odoo_config.json.Precedence: when
ODOO_URL/ODOO_DB/ODOO_USERNAME/ODOO_PASSWORDare all set, the environment wins and defines a single instance nameddefault— unset them to use a multi-instance file.Instance names must match
[A-Za-z0-9_-]{1,64}. Clients connect lazily — an instance is only contacted when a tool targets it.Discovery: the
list_instancestool returns configured names, URLs, databases, and transports — never credentials.Write-approval tokens encode the instance name, so a token validated against one instance can never execute on another.
MCP resources (
odoo://…) always use the default instance in this release; use tools for multi-instance access.
Run
Start the MCP server over stdio:
odoo-mcpor:
python -m odoo_mcpStart Streamable HTTP for local clients:
odoo-mcp --transport streamable-http --host 127.0.0.1 --port 8000 --path /mcpNon-local HTTP binds are rejected unless you pass --allow-remote-http or set MCP_ALLOW_REMOTE_HTTP=1. This server does not include built-in HTTP authentication. Put remote HTTP deployments behind your own authentication, TLS, and network policy.
Check runtime posture without starting the server loop:
odoo-mcp --healthMCP Tools
41 tools grouped by use case. Each tool name is a single-purpose handle the agent can call. Tools that talk to Odoo accept an optional instance parameter when multiple instances are configured (see Multiple Odoo instances).
Read & Discover (11)
Tool | Purpose |
| List Odoo model technical names and labels. |
| Read field metadata for one model. |
| Run bounded read-only |
| Read one record by model and ID. Smart-field selection when caller omits |
| Server-side groupby/aggregation via |
| Search employees by name. |
| Search leave records by date range. |
| Read server version, user context, transport, database, and installed module summary. |
| Build a bounded model catalog with optional field metadata. |
| Build and validate an Odoo domain from structured conditions. |
| Read an |
Write & Operate (5)
Tool | Purpose |
| Produce a non-executing approval payload for |
| Validate a write payload against trusted live |
| Execute only a same-session, live-validated, confirmed write when |
| Execute a reviewed model method. Direct |
| Post a chatter message on a |
Diagnose (3)
Tool | Purpose |
| Diagnose a model call without executing it. |
| Diagnose ACL and record-rule visibility for the current Odoo credential. |
| Group relationship fields, required fields, and create/write hints. |
Migrate (3)
Tool | Purpose |
| Convert XML-RPC-shaped input into JSON-2 endpoint, headers, and named body. |
| Surface transport, method, and migration risks across Odoo versions. |
| Resolve outdated model names ( |
Audit & Plan (3)
Tool | Purpose |
| Scan local addon source without importing addon code. |
| Classify requirements into standard, configuration, Studio, custom module, avoid, or unknown. |
| Report expected modules, models, and discovery calls for sales, CRM, inventory, accounting, or HR. |
Knowledge search — local-first (3)
Tool | Purpose |
| Fetch a bounded record slice once and build a local BM25 index (accent-insensitive; data never leaves the machine). |
| Relevance-ranked free-text search over indexed records with zero further RPC calls. |
| Report per-model index sizes and the |
Accounting (2)
Tool | Purpose |
| Aged AR/AP report bucketed by days overdue (not due / 1-30 / 31-60 / 61-90 / 90+), with per-partner totals. |
| Open receivable/payable item counts plus the draft invoice backlog. |
Background tasks (4)
Tool | Purpose |
| Run an allowlisted long read operation ( |
| Poll a task's status and result. |
| Cancel a pending or running task. |
| List live and recently finished tasks. |
Cross-instance fan-out — read-only (3)
One question across many configured instances, merged and attributed. See the partner playbook.
Tool | Purpose |
| Search every opted-in instance (or a list/tag selection); rows tagged with |
| Group/aggregate per instance plus additive grand totals across the fleet. |
| AR/AP aging across every client DB with combined buckets — the partner-network sweep. |
Utility (2)
Tool | Purpose |
| Report non-secret MCP runtime posture, including rate-limit counters and field-ACL status when enabled. |
| List configured Odoo instance names, URLs, databases, transports, and cross-instance tags — never credentials. |
Resources
URI | Description |
| List available models. |
| Read model metadata and fields. |
| Read one record. |
| Search records with a bounded domain. |
Prompts
11 prompts: 5 diagnostic, plus 6 operational workflow prompts that encode end-to-end business processes and route every write through the approval gate.
Prompt | Use it for |
| Root-cause a failing Odoo call before retrying. |
| Turn raw requirements into Odoo fit/gap buckets. |
| Plan XML-RPC or JSON-RPC migration to External JSON-2. |
| Review a proposed |
| Audit local addon source with scan, risk, and business evidence. |
| Triage draft invoices and post each through the write gate with human checkpoints. |
| Three-way match a purchase order against receipt and bill; flags discrepancies (read-only). |
| Dedup-check, then gated-create a customer with contacts and payment terms. |
| Policy-check pending expense claims, then gated approve/refuse. |
| Read-only month-end checklist: aging, unreconciled items, draft backlog. |
Safe Write Model
Writes are intentionally boring.
preview_writecreates a canonical, non-executing payload.validate_writechecks model metadata, required fields, readonly fields, relation hints, record IDs, and payload shape.execute_approved_writeruns only when all gates pass:the approval came from
validate_writein the same server process,validation used trusted, non-empty live Odoo
fields_getmetadata,the token has not expired or been consumed,
confirm=trueis passed,ODOO_MCP_ENABLE_WRITES=1is set.
Odoo access rules, record rules, and server-side constraints still decide the final result.
Batch creates go through the same gates: pass values_list (one dict per
record, max 100) to preview_write/validate_write — execution maps to a
single atomic Odoo create(vals_list) call. Per-record differing write
values are deliberately unsupported (they would need one non-atomic RPC per
record). Optional extras: ODOO_MCP_ELICIT_WRITES=1 adds a native
human-confirmation form, ODOO_MCP_AUDIT_LOG records every write-path event.
Large binary fields (a resume attached to ir.attachment.datas, a product
image, ...) don't have to be inlined as base64 in the tool call — pass
<field>_from_path instead (e.g. datas_from_path: "/local/path/cv.pdf") to
validate_write. The server reads the file itself; the approval only ever
carries a sha256:<hex>:<size> fingerprint for that field, never the real
content, so nothing large has to round-trip through the calling agent's
context. Requires ODOO_MCP_ATTACHMENT_UPLOAD_ROOTS (fails closed otherwise)
and respects ODOO_MCP_MAX_ATTACHMENT_UPLOAD_BYTES. No new tool — this rides
the same preview_write → validate_write → execute_approved_write gate as
every other write.
Reviewed side-effect methods such as sale.order.action_confirm can be enabled
one by one:
export ODOO_MCP_ALLOWED_SIDE_EFFECT_METHODS="sale.order.action_confirm,res.partner.message_post"ODOO_MCP_ALLOW_UNKNOWN_METHODS=1 is still supported for trusted deployments,
but health_check reports it as broad mode. Prefer exact allowlist entries when
you only need a small number of reviewed methods.
Docker
Use the prebuilt GHCR image:
docker pull ghcr.io/erpipe-org/mcp-odoo:latestOr build it locally:
docker build -t mcp/odoo:latest -f Dockerfile .Run over stdio from an MCP client (replace mcp/odoo:latest with ghcr.io/erpipe-org/mcp-odoo:latest to use the prebuilt image):
{
"mcpServers": {
"odoo": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e", "ODOO_URL",
"-e", "ODOO_DB",
"-e", "ODOO_USERNAME",
"-e", "ODOO_PASSWORD",
"-e", "ODOO_TRANSPORT",
"-e", "ODOO_API_KEY",
"mcp/odoo:latest"
]
}
}
}Run Streamable HTTP locally:
docker run --rm \
-p 127.0.0.1:8000:8000 \
-e ODOO_URL \
-e ODOO_DB \
-e ODOO_USERNAME \
-e ODOO_PASSWORD \
-e ODOO_TRANSPORT \
-e ODOO_API_KEY \
mcp/odoo:latest \
--transport streamable-http \
--host 0.0.0.0 \
--port 8000 \
--allow-remote-httpTest
Run the normal quality gates:
uv run python -m ruff check .
uv run python -m mypy src
uv run python -m pytestRun real Odoo smoke tests:
uv run --python 3.12 --with-editable . scripts/odoo_compose_smoke.py \
--versions 16.0 17.0 18.0 19.0 \
--timeout 360 \
--inspector-smokeThe smoke harness boots disposable Docker Compose stacks, validates direct Odoo access, validates MCP stdio, and for Odoo 19 also validates JSON-2 and Streamable HTTP.
Run the multi-instance smoke (one stack, three databases, two accounts on one instance):
uv run --python 3.12 --with-editable . scripts/odoo_multi_instance_smoke.pyCompatibility
XML-RPC remains the default transport for broad compatibility. Odoo 19 supports External JSON-2 through ODOO_TRANSPORT=json2. XML-RPC and JSON-RPC are deprecated since Odoo 19 and scheduled for removal in Odoo 22 (fall 2028), so new integrations should plan for JSON-2.
Documentation
Guide | Covers |
How Odoo MCP compares to other Odoo MCP bridges | |
System shape, transports, safety boundaries | |
Multi-database config, routing, isolation model | |
From error text to root cause (ACL, record rules, routing) | |
Cache/retry knobs, batching patterns, N+1 detection | |
Claude Desktop, Docker, Streamable HTTP setups | |
Local gates and the Docker Compose smoke harness |
Contributing
Issues, pull requests, and compatibility reports are welcome. Start with CONTRIBUTING.md, include your Odoo version, transport, client type, and the verification you ran.
Security
Do not publish logs that contain Odoo credentials, API keys, database names from private environments, or full Odoo debug traces. Report vulnerabilities through SECURITY.md.
License
MIT. See LICENSE.
Available Tools
41 toolsaccounting_health_across_instancesCRead-onlyIdempotent
AR/AP aging fanned out across instances — the partner-network sweep
| Name | Required | Description | Default |
|---|---|---|---|
| as_of | No | Optional ISO date used as the aging reference date. | |
| direction | No | Aging direction: 'receivable' or 'payable'. | receivable |
| instances | No | Optional instance selector; defaults to all eligible instances. | |
| top_partners | No | Maximum top partners to include in each aging report; capped at 100. |
Output Schema
| Name | Required | Description |
|---|---|---|
| tool | No | Reporting tool name. |
| as_of | No | |
| error | No | Sanitized error message when success is false. |
| errors | No | |
| results | No | |
| success | Yes | False when the call failed; see error. |
| direction | No | |
| elapsed_ms | No | |
| instance_count | No | |
| skipped_opt_out | No | |
| combined_buckets | No | |
| instances_queried | No | |
| unknown_instances | No | |
| combined_total_outstanding | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds a vague hint of multi-instance scope ('fanned out across instances') but doesn't disclose additional behaviors like output aggregation or performance implications. It doesn't contradict annotations, and the annotation coverage reduces the burden, so a middling score is appropriate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise (one phrase), but it's cryptic and lacks structure. It doesn't front-load a clear purpose; instead, it uses jargon ('partner-network sweep') that obscures meaning. Conciseness is present but at the expense of clarity, making it only minimally acceptable.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (multi-instance, aging direction, top-partner filtering) and the availability of an output schema, the description should explain the aggregation behavior and scope. It fails to describe what 'fanned out' means operationally, how instances are selected, or what the response contains. The schema and annotations help, but the description leaves critical gaps for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% — all four parameters (as_of, direction, instances, top_partners) have detailed descriptions. The description adds no extra meaning about parameters, so the baseline of 3 applies; it neither enriches nor harms parameter understanding.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses cryptic language like 'fanned out across instances' and 'the partner-network sweep' without specifying that it's a read-only AR/AP aging query across multiple instances. It doesn't clearly state the resource or action, making it hard to distinguish from sibling tools like receivable_payable_aging or accounting_health_summary.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives (e.g., single-instance aging tools or other cross-instance queries). The description gives no context for selecting it based on use case, prerequisites, or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
accounting_health_summaryCRead-onlyIdempotent
Open receivable/payable item counts and draft invoice backlog
| Name | Required | Description | Default |
|---|---|---|---|
| instance | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| tool | No | Reporting tool name. |
| error | No | Sanitized error message when success is false. |
| success | Yes | False when the call failed; see error. |
| draft_invoices | No | |
| open_payable_items | No | |
| open_receivable_items | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint, so the safety profile is covered. The description adds no extra behavioral context, such as the meaning of 'open' or that it only returns counts without detail, and it says nothing about the optional 'instance' parameter's effect on results.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that conveys the core purpose without padding. It is appropriately terse and front-loaded, though it could benefit from a bit more structure or a second sentence for context.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the presence of an output schema, the return format may be documented there, but the description remains incomplete in core areas: it does not explain the 'instance' parameter, does not clarify the tool's single-instance scope versus siblings, and offers no usage guidance. The description is too minimal to be fully self-sufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has one optional parameter 'instance' with no description, and the schema description coverage is 0%. The tool description also fails to explain what 'instance' refers to or how it affects the output, leaving the agent without essential information for correct invocation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool provides receivable/payable item counts and draft invoice backlog, identifying its resource and action. However, it does not explicitly distinguish it from sibling tools like 'receivable_payable_aging' or 'accounting_health_across_instances', which likely cover related but different scopes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives no guidance on when to use this tool versus alternatives. It does not mention that it is likely for a single instance versus across instances, nor does it note any prerequisites or exclusions. The user is left to infer usage from the name alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
aggregate_across_instancesBRead-onlyIdempotent
Read-only aggregate fanned out across instances with combined grand totals
| Name | Required | Description | Default |
|---|---|---|---|
| model | Yes | ||
| domain | No | ||
| group_by | Yes | ||
| measures | No | ||
| instances | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| tool | No | Reporting tool name. |
| error | No | Sanitized error message when success is false. |
| model | No | |
| errors | No | |
| results | No | |
| success | Yes | False when the call failed; see error. |
| elapsed_ms | No | |
| combined_count | No | |
| instance_count | No | |
| skipped_opt_out | No | |
| combined_measures | No | |
| instances_queried | No | |
| unknown_instances | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description says 'Read-only', which is consistent with the annotations (readOnlyHint=true, destructiveHint=false, idempotentHint=true). It adds behavioral context by stating the operation 'fans out across instances' and produces 'combined grand totals', which is beyond what annotations provide. However, it does not disclose other behavioral aspects like potential latency, failure semantics, or how 'instances' is interpreted by default.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence with no filler words. It front-loads the key qualifier 'Read-only' and immediately conveys the core behavior. It is appropriately sized for the information it delivers, though it sacrifices detail for brevity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with cross-instance fan-out, five parameters, and no parameter descriptions, the one-line description is insufficient. It does not mention how instances are specified, what measures or group_by mean, or how domains are applied. An output schema exists, but the description alone leaves too many operational gaps for an agent to use the tool confidently.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0% and the description does not explain any of the five parameters (model, domain, group_by, measures, instances). The only hint is the phrase 'across instances', but it does not clarify parameter formats, defaults, or relationships. With no parameter documentation in either schema or description, the agent is left to guess semantics.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly indicates the tool performs an aggregation operation ('aggregate') that is 'fanned out across instances' with 'combined grand totals', distinguishing it from single-instance aggregation tools like aggregate_records and from cross-instance search tools like search_across_instances. However, it is phrased as a noun phrase rather than an explicit verb+resource construction, which slightly reduces clarity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage is for cross-instance aggregation scenarios ('across instances', 'combined grand totals'), but it does not explicitly state when to use this tool instead of alternatives or when not to use it. Sibling tool names provide context, but the description itself offers no direct comparison or exclusion.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
aggregate_recordsBRead-onlyIdempotent
Aggregate Odoo records server-side using Postgres groupby/sum/count. Uses formatted_read_group on Odoo 19+ and read_group on earlier versions.
| Name | Required | Description | Default |
|---|---|---|---|
| lazy | No | ||
| limit | No | ||
| model | Yes | ||
| order | No | ||
| domain | No | ||
| offset | No | ||
| group_by | Yes | ||
| instance | No | ||
| measures | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| rows | No | Aggregated group rows. |
| tool | No | Reporting tool name. |
| error | No | Sanitized error message when success is false. |
| model | No | |
| method | No | formatted_read_group (19+) or read_group. |
| success | Yes | False when the call failed; see error. |
| group_by | No | |
| measures | No | |
| row_count | No | |
| major_version | No | |
| fallback_reason | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is clear. The description adds a bit of behavioral context by mentioning the version-specific read_group methods, but does not disclose other traits like error behavior or performance implications.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that front-loads the purpose. It is concise, but could be slightly more structured to separate the purpose from the implementation detail.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With 9 parameters and no inline parameter explanations, the description is insufficient for an agent to use the tool correctly. The presence of an output schema partially compensates for return value documentation, but parameter semantics are critically lacking.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0% for 9 parameters. The description only hints at group_by and measures (via 'sum/count'), but does not explain key parameters like lazy, domain, order, or instance. This lack of detail hinders correct parameter usage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool aggregates Odoo records server-side using Postgres groupby/sum/count. It specifies the underlying methods (formatted_read_group for Odoo 19+, read_group for earlier versions), which distinguishes it from sibling tools like search_records or read_record that return raw records.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies the tool is for aggregation tasks, but does not explicitly state when to use it versus alternatives. It lacks guidance on prerequisites, when not to use, or comparison with siblings like aggregate_across_instances.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
analyze_upgrade_logARead-onlyIdempotent
Classify Odoo install/update log errors into a migration worklist (no_action / needs_review / needs_script) with fix suggestions
| Name | Required | Description | Default |
|---|---|---|---|
| log_text | Yes | ||
| source_version | No | ||
| target_version | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the description adds value by specifying the classification output (no_action, needs_review, needs_script) and fix suggestions. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single clear sentence with no wasted words. Front-loaded with the verb and resource, immediate understanding of functionality.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With an output schema present and annotations covering safety, the description is largely complete. However, missing parameter semantics slightly reduces completeness for a tool with 3 parameters and zero schema descriptions.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0% and description provides no additional meaning for any of the 3 parameters (log_text, source_version, target_version). The agent must rely solely on parameter names, which are self-explanatory but insufficient for precise invocation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states the tool classifies Odoo install/update log errors into a specific migration worklist with categories and fix suggestions. It uniquely identifies the tool's function and resource, distinguishing it from siblings like upgrade_risk_report.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
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 versus alternatives or when not to use it. The description implies usage for Odoo log analysis but lacks explicit context or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
build_domainBRead-onlyIdempotent
Build a validated Odoo domain from structured conditions
| Name | Required | Description | Default |
|---|---|---|---|
| conditions | Yes | ||
| fields_metadata | No | ||
| logical_operator | No | and |
Output Schema
| Name | Required | Description |
|---|---|---|
| tool | No | Reporting tool name. |
| error | No | Sanitized error message when success is false. |
| domain | No | Validated Odoo domain expression. |
| issues | No | Validation errors and warnings. |
| success | Yes | False when the call failed; see error. |
| conditions | No | Normalized field/operator/value conditions. |
| metadata_used | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering safety expectations. The description adds 'validated,' implying some checking of conditions, but does not explain other behavioral aspects like whether it returns a string or list, or any constraints. Since annotations cover the key safety traits, the description adds minimal extra behavioral clarity.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, compact sentence with no filler. It efficiently conveys the core action and input. Every word contributes meaning, making it appropriately concise.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has three parameters, one required, and an output schema, yet the description does not explain any of the parameters beyond a vague reference to conditions. It lacks details on how the logical operator or fields metadata influence the output. Even with annotations and an output schema, the description is incomplete for a tool that constructs complex domains.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate for explaining parameters. It only mentions 'structured conditions,' which vaguely maps to the 'conditions' parameter, but completely omits the 'fields_metadata' and 'logical_operator' parameters. Without any elaboration on how these parameters affect domain construction, parameter semantics are severely under-explained.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Build a validated Odoo domain from structured conditions.' The verb 'build' and resource 'Odoo domain' are specific, and the mention of 'validated' adds a unique aspect. It distinguishes from sibling tools like search_records, which perform queries, whereas this constructs a domain filter.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
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. It does not mention prerequisites, when it is appropriate to build a domain, or suggest any alternative tools. The single sentence is purely declarative without usage context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
business_pack_reportARead-onlyIdempotent
Report expected modules, models, and safe discovery calls for a business pack
| Name | Required | Description | Default |
|---|---|---|---|
| pack | Yes | Business pack to report, such as sales, crm, inventory, accounting, or hr. | |
| instance | No | Optional configured Odoo instance name; uses the default if omitted. | |
| use_live_metadata | No | Whether to inspect live models and installed modules. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint, providing a clear safety profile. The description adds minimal behavioral context beyond stating the purpose; it does not discuss performance, caching, or side effects.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence that is front-loaded with the verb and resource. It is efficient and avoids unnecessary words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With 3 parameters, an output schema, and clear annotations, the description provides adequate context. It covers the primary purpose but could mention the output structure or typical use cases briefly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the input schema already documents all parameters. The description does not add meaning beyond the schema; it merely restates the tool's purpose.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Report' and the resource 'expected modules, models, and safe discovery calls for a business pack'. It distinguishes this tool from siblings like health checks or search tools by its specific reporting scope.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives, when not to use it, or any prerequisites. The description simply states what it does without contextual usage advice.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cancel_async_taskCRead-onlyIdempotent
Cancel a pending or running background task
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| name | No | |
| note | No | |
| tool | No | Reporting tool name. |
| error | No | Sanitized error message when success is false. |
| result | No | |
| status | No | |
| success | Yes | False when the call failed; see error. |
| task_id | No | |
| created_at | No | |
| started_at | No | |
| finished_at | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description directly contradicts the annotation readOnlyHint: true. Cancelling a task is a mutating action, not read-only. The description adds no behavioral context beyond the basic action, and it does not explain side effects like whether cancellation is irreversible or what happens to the task's status. This is a serious inconsistency with the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence with no unnecessary words. It is front-loaded with the core action and resource. There is no redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (one parameter) and the existence of an output schema, the description could be minimal, but it omits critical usage context and contradicts the annotations. It fails to provide guidance on when to cancel tasks or what the expected outcome is, making it incomplete for an agent to use reliably.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description provides no information about the task_id parameter beyond its name. Schema description coverage is 0%, so the description must compensate, but it does not explain how to obtain a task_id or what format is expected. The single parameter is self-explanatory by name, but the description adds zero semantic value.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: cancel a pending or running background task. It uses a specific verb ('cancel') and a specific resource ('background task'), and it distinguishes itself from sibling tools like submit_async_task, get_async_task, and list_async_tasks by being the cancellation action.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives no guidance on when to use this tool versus alternatives. It does not mention checking task status first (e.g., via get_async_task), nor does it state that tasks should be cancelled only when they are no longer needed. There is no discussion of prerequisites or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
chatter_postADestructive
Post a chatter message on a mail.thread record. Default mode requires an approval token returned from a preview call; set MCP_CHATTER_DIRECT=1 to bypass and post immediately.
| Name | Required | Description | Default |
|---|---|---|---|
| body | Yes | ||
| model | Yes | ||
| confirm | No | ||
| approval | No | ||
| instance | No | ||
| record_id | Yes | ||
| partner_ids | No | ||
| message_type | No | comment | |
| subtype_xmlid | No | ||
| attachment_ids | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate write and destructive behaviors; the description adds the approval flow context beyond annotations, but does not fully disclose side effects, error conditions, or the exact effect when the environment variable is not set. It offers some transparency but not exhaustive.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, both front-loaded. The first sentence states the core purpose, the second introduces the approval mode. No extraneous information. Every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (10 parameters, destructive annotation, approval flow), the description covers the dual-mode usage but lacks details on parameter semantics, error handling, and exactly what the tool returns (though output schema exists). It is minimally complete but leaves significant gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage and 10 parameters, the description provides no additional meaning for any parameter. The agent must rely on parameter names alone, which is insufficient for correct usage. The description should have elaborated on key parameters like model, record_id, approval, etc.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Post a chatter message') and the target resource ('mail.thread record'). This is a specific verb+resource combination that distinguishes it from all sibling tools, none of which perform chatter posting.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides context on the two modes (with approval token vs. direct bypass) but does not explicitly state when not to use this tool or name alternative tools. It gives a practical condition (environment variable) but lacks comprehensive guidance on alternatives or prerequisites.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
data_quality_reportARead-onlyIdempotent
Run read-only data-quality checks on one Odoo model: duplicates, missing required values, orphaned references, format anomalies
| Name | Required | Description | Default |
|---|---|---|---|
| model | Yes | ||
| checks | No | ||
| instance | No | ||
| key_fields | No | ||
| sample_limit | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| tool | No | Reporting tool name. |
| error | No | Sanitized error message when success is false. |
| model | No | |
| results | No | |
| success | Yes | False when the call failed; see error. |
| summary | No | |
| instance | No | |
| checks_run | No | |
| sample_limit | No | |
| skipped_restricted_fields | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint. The description adds value by listing specific quality check categories, but does not disclose behavior like performance impact or error handling. Given the strong annotation coverage, the description provides adequate additional context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, front-loaded sentence that efficiently communicates the tool's purpose and scope. No unnecessary words, and it includes the key verb 'run', resource 'Odoo model', and constraints 'read-only' and specific check types.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite having an output schema, the description fails to explain how to use the five parameters effectively or what to expect from the checks. For a tool with no schema parameter descriptions, this is insufficient for an agent to craft correct invocations.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does 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 mentions 'one Odoo model' but does not explain parameters like 'checks' (what string values?), 'instance', 'key_fields', or 'sample_limit'. Users lack guidance on configuring these parameters beyond their names.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool runs read-only data-quality checks on one Odoo model, listing specific check types (duplicates, missing values, etc.). It distinguishes itself from sibling tools like 'aggregate_records' or 'diagnose_access' by focusing on data quality and read-only operation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
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 versus alternatives, nor any prerequisites or exclusions. While the purpose implies usage for data quality checks, a mention of when not to use it (e.g., for write operations) would improve clarity.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
diagnose_accessARead-onlyIdempotent
Diagnose ACL and record-rule visibility for an Odoo model
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum metadata rows to inspect; capped at 500. | |
| model | Yes | Technical Odoo model name to inspect. | |
| domain | No | Optional Odoo domain used for the visibility check. | |
| instance | No | Optional configured Odoo instance name; uses the default if omitted. | |
| operation | No | Access operation to diagnose, such as read or write. | read |
| record_ids | No | Optional record IDs to check directly. | |
| include_rules | No | Whether to include matching record-rule metadata. | |
| expected_count | No | Optional expected visible record count for comparison. | |
| observed_error | No | Optional error text or structured error to classify. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and non-destructiveness; the description confirms the diagnostic nature but adds no further behavioral details (e.g., output volume, execution cost).
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The single-sentence description is concise, front-loaded with the verb and resource, and contains no redundant information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a 9-parameter tool with full schema and an output schema, the brief description is mostly adequate, though it could briefly mention the nature of the diagnostic output (e.g., 'returns ACL analysis').
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the description does not need to explain parameters; it adds no extra meaning beyond what the schema already provides, meeting the baseline.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'diagnose' and the resource 'ACL and record-rule visibility for an Odoo model', making the tool's specific purpose distinct from sibling diagnostic tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives like diagnose_odoo_call or when to avoid it; the description lacks context for decision-making.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
diagnose_odoo_callARead-onlyIdempotent
Diagnose an Odoo model call without executing it
| Name | Required | Description | Default |
|---|---|---|---|
| args | No | Optional positional call arguments. | |
| model | Yes | Technical Odoo model name to diagnose. | |
| kwargs | No | Optional keyword call arguments. | |
| method | Yes | Odoo model method name to diagnose. | |
| metadata | No | Optional model or method metadata used by the diagnosis. | |
| transport | No | Transport to assess, such as 'auto', 'xmlrpc', or 'json2'. | auto |
| include_debug | No | Whether to include additional diagnostic details. | |
| observed_error | No | Optional error text or structured error to classify. | |
| target_version | No | Optional target Odoo version for compatibility checks. | |
| use_live_metadata | No | Whether to request live metadata; this preview tool does not fetch it. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds 'without executing it', reinforcing safety but providing no additional behavioral details beyond what annotations convey.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, concise sentence that immediately conveys the tool's purpose. No unnecessary words or information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has 10 parameters and an output schema, the description is brief but sufficient to understand the core functionality. However, it could briefly mention that the tool analyzes potential issues without side effects, which would improve completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so baseline is 3. The tool description adds no extra meaning beyond the parameter descriptions in the schema (e.g., it doesn't explain how 'metadata' or 'transport' affect diagnosis).
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description explicitly states 'Diagnose an Odoo model call without executing it', clearly defining the action (diagnose), the resource (Odoo model call), and the key constraint (no execution). This distinguishes it from sibling tools like 'execute_method' which performs actual execution.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for diagnosis, but does not provide explicit guidance on when to use this tool versus alternatives (e.g., 'execute_method', 'preview_write'). There is no mention of use cases or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
execute_approved_writeCDestructive
Execute a previously previewed and confirmed standard write
| Name | Required | Description | Default |
|---|---|---|---|
| confirm | No | ||
| approval | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate destructiveHint=true, but the description adds no details about what gets destroyed, permissions required, or failure behavior, failing to add value beyond the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The single-sentence description is concise but overly brief, sacrificing essential information for brevity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (nested object, confirm parameter, output schema exists), the description is too minimal to adequately guide an agent, missing return value expectations and parameter specifics.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage, the description provides no guidance on the 'approval' object or 'confirm' boolean, leaving the agent without necessary parameter semantics.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description 'Execute a previously previewed and confirmed standard write' uses a specific verb (execute) and resource (approved write), clearly distinguishing it from sibling tools like 'preview_write' and 'validate_write'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies the tool should be used after preview and confirmation, but it does not explicitly state when not to use it or provide alternatives among siblings like 'validate_write'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
execute_methodCDestructive
Execute a custom method on an Odoo model
| Name | Required | Description | Default |
|---|---|---|---|
| args | No | Optional positional method arguments. | |
| model | Yes | Technical Odoo model name, for example 'res.partner'. | |
| kwargs | No | Optional keyword method arguments. | |
| method | Yes | Odoo model method to call; direct create, write, and unlink are blocked. | |
| instance | No | Optional configured Odoo instance name; uses the default if omitted. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already flag destructiveHint: true and readOnlyHint: false, indicating the tool can modify data. The description adds no behavioral context beyond the annotations—no mention of side effects, permissions required, or safety considerations. Given the annotations, the description should at least reinforce the destructive nature or clarify when destruction might occur.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single short sentence, which is concise but not optimally structured. It could be expanded with key information (use case, restrictions) without becoming verbose. Front-loads the core action but omits important guidance.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite having an output schema, the description fails to explain return values, error behaviors, or side effects. For a destructive, open-world tool with 5 parameters and many siblings, this is insufficient. The description should at least mention safety warnings or when to prefer this over similar tools.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, with each parameter (model, method, args, kwargs, instance) already described. The tool description adds no additional meaning beyond what the schema provides. Per the rubric, baseline is 3 since schema coverage is high.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description 'Execute a custom method on an Odoo model' clearly identifies the action (execute) and the resource (custom method on Odoo model). It distinguishes from siblings like 'execute_approved_write' (specific to writes) and 'diagnose_odoo_call' (testing). However, it could be more precise about what constitutes a 'custom method' versus blocked methods (create/write/unlink), which are noted only in the parameter schema.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives. The description does not mention prerequisites, comparable tools (e.g., 'execute_approved_write' for safe writes, 'read_record' for reading), or scenarios where this tool is inappropriate. The blocked methods are only stated in a parameter description, not in the tool description.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
fit_gap_reportCRead-onlyIdempotent
Classify Odoo requirements into fit/gap implementation buckets
| Name | Required | Description | Default |
|---|---|---|---|
| requirements | Yes | ||
| available_fields | No | ||
| available_models | No | ||
| business_context | No | ||
| installed_modules | No | ||
| use_live_metadata | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds no behavioral details beyond what annotations provide, so baseline score applies.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence is too brief for a tool with 6 parameters and an output schema; it lacks necessary details and qualifies as under-specification rather than conciseness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite having an output schema and multiple parameters, the description omits how the classification works, how parameters affect results, and what the output contains. Incomplete for the tool's complexity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the description does not explain any parameter purpose, format, or interaction. Parameters like 'available_fields' and 'business_context' are left entirely undefined, severely hindering correct invocation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description uses a specific verb 'classify' and resource 'Odoo requirements into fit/gap implementation buckets', clearly distinguishing it from sibling tools like 'read_record' or 'aggregate_records' which do not perform classification.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Description provides no guidance on when to use this tool, prerequisites, or alternatives. It only states what it does, leaving the agent to infer usage context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
generate_json2_payloadBRead-onlyIdempotent
Build a JSON-2 request preview without network access
| Name | Required | Description | Default |
|---|---|---|---|
| args | No | ||
| model | Yes | ||
| kwargs | No | ||
| method | Yes | ||
| base_url | No | ||
| database | No | ||
| include_database_header | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=true and idempotentHint=true. The description adds that it is a preview without network access, which reinforces the safe, non-destructive nature. However, it does not disclose any additional behaviors like potential formatting 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, well-front-loaded sentence with all critical information at the beginning. No extraneous words or repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has 7 parameters and an output schema, but the description ignores both. It does not explain what constitutes a 'JSON-2 request preview' or what the returned payload looks like, leaving the agent underinformed.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Despite 0% schema description coverage, the description adds zero information about the 7 parameters. Terms like 'model', 'method', 'base_url' are left unexplained, so the agent must infer from names alone.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly specifies the verb 'Build' and the object 'JSON-2 request preview', and adds the key qualifier 'without network access', distinguishing it from sibling tools like 'diagnose_odoo_call' which likely involve actual network calls.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
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 (e.g., diagnose_odoo_call or execute_method). It lacks any mention of use cases, prerequisites, or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_async_taskARead-onlyIdempotent
Poll a background task's status and result
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| name | No | |
| note | No | |
| tool | No | Reporting tool name. |
| error | No | Sanitized error message when success is false. |
| result | No | |
| status | No | |
| success | Yes | False when the call failed; see error. |
| task_id | No | |
| created_at | No | |
| started_at | No | |
| finished_at | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is known. The description adds the behavioral context of polling a background task's status and result, but it does not disclose any additional traits such as behavior when the task is not found, retry logic, or output specifics. Since annotations carry the safety burden, the description provides minimal but adequate transparency beyond the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence that is front-loaded with the action 'Poll' and clearly states the resource. It contains no unnecessary words and is easy to parse.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simple structure (one parameter), the presence of an output schema, and annotations covering safety, the description is largely complete. It accurately conveys the tool's purpose and operation. It lacks explicit workflow context (e.g., referencing submit_async_task), but for a simple polling tool, the description is sufficiently comprehensive for an agent to understand and invoke it.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0% and the description does not mention parameters at all. The only parameter, task_id, is self-explanatory from its name and type, but the description does not compensate for the lack of schema descriptions by explaining how to obtain or use the task_id, leaving the agent to infer its meaning from context.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description "Poll a background task's status and result" uses the specific verb 'Poll' and clearly identifies the resource (background task's status and result). It distinguishes from sibling tools like submit_async_task, cancel_async_task, and list_async_tasks by indicating a targeted retrieval of a single task's status and result.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for checking the status of an asynchronous background task, but it does not explicitly state when to use this tool versus alternatives such as list_async_tasks, nor does it mention exclusions. It provides no direct guidance on the workflow (e.g., after submitting a task) or when to prefer another tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_model_fieldsBRead-onlyIdempotent
Get field metadata for a specific Odoo model
| Name | Required | Description | Default |
|---|---|---|---|
| model | Yes | ||
| instance | No | ||
| relevance | No | ||
| max_fields | No | ||
| field_names | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| tool | No | Reporting tool name. |
| count | No | |
| error | No | Sanitized error message when success is false. |
| result | No | Mapping of field name to fields_get metadata. |
| ranking | No | Relevance scores when relevance="top". |
| success | Yes | False when the call failed; see error. |
| relevance_applied | No | |
| restricted_fields | No | Fields marked restricted by the field ACL. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint=false, so the description adds no extra behavioral context beyond what annotations provide.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence with no unnecessary words, though it could be more structured or front-loaded with key information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 5 parameters and an output schema, the description is too minimal; it fails to explain how parameters affect results or what the output contains.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0% and the description does not explain any of the 5 parameters, such as 'model', 'instance', 'relevance', 'max_fields', or 'field_names', leaving the agent uninformed.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states the tool retrieves field metadata for a specific Odoo model, distinguishing it from sibling tools like list_models or search_records.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
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 reading a record's fields or exploring model relationships.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_odoo_profileARead-onlyIdempotent
Read a bounded profile of the connected Odoo environment
| Name | Required | Description | Default |
|---|---|---|---|
| instance | No | Optional configured Odoo instance name; uses the default if omitted. | |
| module_limit | No | Maximum installed modules to include; capped at 500. | |
| include_modules | No | Whether to include installed-module metadata. |
Output Schema
| Name | Required | Description |
|---|---|---|
| tool | No | Reporting tool name. |
| error | No | Sanitized error message when success is false. |
| profile | No | Server, user-context, transport, and module metadata. |
| success | Yes | False when the call failed; see error. |
| metadata_used | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, destructiveHint=false, and idempotentHint=true. The description adds minimal behavioral context beyond 'bounded', leaving the precise scope unclear. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, concise sentence front-loads the core action. No extraneous text, and every word is meaningful.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
While the output schema exists (reducing need to describe returns), the term 'bounded profile' is vague. The description could clarify what is included (e.g., version, user info). Adequate but not excellent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
All three parameters have descriptions in the input schema, achieving 100% coverage. The tool description does not add extra 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.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Read') and resource ('bounded profile of the connected Odoo environment'), clearly distinguishing this tool from sibling tools like 'get_model_fields' or 'list_instances'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives such as 'health_check' or 'list_models'. An agent receives no context about prerequisites or preference conditions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
health_checkARead-onlyIdempotent
Report this MCP server's non-secret runtime safety posture
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| tool | No | Reporting tool name. |
| error | No | Sanitized error message when success is false. |
| server | No | Server name, instructions, surface counts. |
| plugins | No | Opt-in plugin load state and tool filtering. |
| runtime | No | Non-secret runtime security posture. |
| success | Yes | False when the call failed; see error. |
| rate_limits | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint, idempotentHint, and non-destructive. The description adds 'non-secret runtime safety posture', clarifying scope but not revealing additional behavioral traits beyond annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, concise, no redundant words. Every part contributes to clarity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given zero parameters, rich annotations, and an output schema, the description is sufficient. It omits output details but output schema compensates. No gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
No parameters exist, so schema coverage is 100%. The description does not need to add parameter meaning. Baseline 4 is appropriate for zero-param tools.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool reports the server's non-secret runtime safety posture, a specific verb+resource. It distinguishes from health-related siblings like accounting_health_across_instances which focus on different domains.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
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 versus alternatives. The purpose is implied but no when-not or sibling differentiation is provided, leaving the agent to infer usage context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
index_knowledgeBRead-onlyIdempotent
Fetch a bounded slice of records and build a local BM25 knowledge index
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| model | Yes | ||
| domain | No | ||
| fields | No | ||
| replace | No | ||
| instance | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| tool | No | Reporting tool name. |
| error | No | Sanitized error message when success is false. |
| model | No | |
| fetched | No | |
| indexed | No | |
| success | Yes | False when the call failed; see error. |
| instance | No | |
| max_documents | No | |
| indexed_fields | No | Explicit field list or 'smart selection'. |
| redacted_fields | No | |
| documents_in_index | No | |
| skipped_over_budget | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With annotations readOnlyHint=true, idempotentHint=true, and destructiveHint=false, the description adds context by specifying the operation is 'local' and builds a BM25 index, suggesting side effects are confined to the local session. This clarifies that while it's a read operation, it sets up a searchable structure. It does not contradict any annotation and adds useful nuance about scope, though it could mention memory/performance implications.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence of 13 words, free of fluff. Every word earns its place, immediately conveying the action and outcome. It is perfectly sized for quick consumption.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has 6 parameters (moderate complexity) and an output schema exists. The description covers the overall purpose but omits any detail about parameters, return value structure, or edge cases like what happens with replace=true. Given the annotations already declare safety, this is adequate for a basic understanding but leaves gaps in knowing how to set up the index correctly, making it minimally complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0% and the description makes no mention of any parameters. All six parameters (limit, model, domain, fields, replace, instance) are left unexplained. Since the schema provides no defaults or descriptions, the description needed to compensate but entirely fails to clarify what these parameters do or how they interact. This leaves the agent guessing on parameter usage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb 'fetch' and 'build' with concrete resources: 'a bounded slice of records' and 'a local BM25 knowledge index'. This clearly distinguishes it from sibling tools like search_knowledge and knowledge_stats, as it focuses on indexing rather than querying. It tells exactly what the tool does.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
There is no guidance on when to use this tool instead of alternatives. It does not mention exclusions, prerequisites, or compare to similar tools like search_knowledge or list_instances. The description only states the action without contextual 'when' or 'when not to use', so it fails to help an agent decide between this and related tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
inspect_model_relationshipsBRead-onlyIdempotent
Inspect model relationships and required field metadata
| Name | Required | Description | Default |
|---|---|---|---|
| model | Yes | ||
| instance | No | ||
| fields_metadata | No | ||
| include_computed | No | ||
| include_readonly | No | ||
| use_live_metadata | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Description adds context beyond annotations by specifying what is inspected (relationships and required field metadata). Annotations already show readOnlyHint true, destructive false, idempotent true, so the description complements well.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence with no wasted words. Purpose is front-loaded and clear.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 6 parameters and no schema descriptions, the description is insufficient. It does not explain parameter usage or return value (though output schema exists). Leaves agent with significant gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0% and the description does not explain any of the 6 parameters (model, fields_metadata, include_readonly, etc.). The agent must infer meaning solely from parameter names and types.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states the tool inspects model relationships and required field metadata, distinguishing it from siblings like get_model_fields which only gets fields. However, it could be more explicit that it is read-only.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool vs alternatives like get_model_fields or search_records. The description does not mention appropriate contexts or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
knowledge_statsARead-onlyIdempotent
Report local knowledge index sizes and document budget
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| tool | No | Reporting tool name. |
| error | No | Sanitized error message when success is false. |
| indexes | No | |
| success | Yes | False when the call failed; see error. |
| max_documents | No | |
| total_documents | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint, which already cover safety. The description adds that it reports 'local' knowledge index, which is useful context, but does not elaborate on what exactly is included (e.g., budget specifics, whether it aggregates across instances). No contradiction.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence that states exactly what the tool does. No fluff, perfectly front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Complexity is low with 0 parameters and a clear purpose. The output schema exists, so return values are presumably documented there. The description covers the main function (sizes and budget) but could mention whether it's instance-specific or aggregated, though 'local' hints at instance-level. Overall complete enough.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has 0 parameters, so schema coverage is 100% trivially. The description adds no parameter details because none exist. Baseline for 0 params is 4, and the description is adequate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool reports local knowledge index sizes and document budget, which is specific and distinguishes it from siblings like index_knowledge and search_knowledge. It lacks a verb like 'get' but the purpose is clear.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for checking knowledge index stats, but does not explicitly state when to use this tool versus alternatives (e.g., index_knowledge or search_knowledge). No exclusions or contextual triggers are provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_async_tasksARead-onlyIdempotent
List recent background tasks newest-first
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| tool | No | Reporting tool name. |
| error | No | Sanitized error message when success is false. |
| tasks | No | |
| success | Yes | False when the call failed; see error. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is established. The description adds the newest-first ordering, which is useful, but it does not disclose other behaviors like result limits, pagination, or what 'recent' means. This goes slightly beyond annotations but is minimal.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, concise sentence that states the action, resource, and ordering. It is front-loaded and contains no redundant information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter list tool with an output schema and good annotations, the description is adequate. The only slight gap is the vague term 'recent' without a defined limit, but the overall simplicity and existing structured data make it sufficiently complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the baseline is 4. The description does not need to add parameter meaning, and since there are no params, no additional info is required.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the action (list), the resource (background tasks), and the ordering (newest-first). It distinguishes from siblings like get_async_task (fetch specific) and cancel_async_task (cancel), so the purpose is unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives such as get_async_task or cancel_async_task. The description simply states what it does without context for selection or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_instancesARead-onlyIdempotent
List configured Odoo instance names without credentials
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| tool | No | Reporting tool name. |
| error | No | Sanitized error message when success is false. |
| default | No | Name of the default instance. |
| success | Yes | False when the call failed; see error. |
| instances | No | Instance entries (never credentials). |
| instance_count | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Adds behavioral context beyond annotations: states the tool requires no credentials. Annotations already cover read-only and idempotent safety, so description is helpful but not critical.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single, front-loaded sentence with no redundant words. Every part is meaningful.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Tool is simple (0 parameters, output schema exists). Description is sufficient: it names the resource and a key constraint (no credentials). Annotations cover safety.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
No parameters exist; schema coverage is 100%. Description effectively conveys the tool's scope without needing parameter details.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states the verb 'List', the resource 'configured Odoo instance names', and a key qualifier 'without credentials'. Distinguishes from siblings like 'search_across_instances'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
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 versus alternatives. The qualifier 'without credentials' implies a condition but does not compare with sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_modelsCRead-onlyIdempotent
List Odoo models with optional name filtering
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | No | ||
| instance | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| tool | No | Reporting tool name. |
| count | No | |
| error | No | Sanitized error message when success is false. |
| result | No | |
| success | Yes | False when the call failed; see error. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, etc. The description adds no behavioral details beyond the listing action, e.g., pagination limits or result ordering, which are relevant but omitted.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single sentence with no extraneous words. However, it sacrifices useful detail for brevity; still earns a high score for conciseness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is adequate for a simple list operation, especially with annotations covering safety and an output schema. But missing details on instance and limit parameters limit completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%. The description only vaguely hints at 'name filtering' for the query parameter, ignoring limit (default 100, implying pagination) and instance (scope). No parameter meanings are clarified.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'List' and resource 'Odoo models', and mentions optional name filtering. However, it does not explicitly differentiate from sibling tools like search_records or read_record, leaving some ambiguity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
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 get_model_fields for specific model details or search_records for records. No exclusions or when-not-to-use instructions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
lookup_model_historyARead-onlyIdempotent
Look up Odoo model rename/removal history by old or new model name (e.g. account.invoice -> account.move)
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=true and idempotentHint=true; description adds specific purpose but no additional behavioral traits (e.g., rate limits, data freshness). Consistent with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence with example, no wasted words, front-loaded with the action and resource.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given one parameter and an output schema, the description sufficiently explains the tool's purpose and input without needing additional details.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage, the description compensates by explaining the 'name' parameter expects an old or new model name, illustrated by an example.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states the verb 'look up' and the resource 'Odoo model rename/removal history', with an example distinguishing it from sibling tools like search_records or read_record.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance on when to use or not use this tool versus alternatives; the example provides context but lacks when-not-to-use criteria.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
preview_writeARead-onlyIdempotent
Preview create, write, or unlink without executing it
| Name | Required | Description | Default |
|---|---|---|---|
| model | Yes | ||
| values | No | ||
| context | No | ||
| instance | No | ||
| operation | Yes | ||
| record_ids | No | ||
| values_list | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description matches annotations (readOnly, idempotent) and adds the 'preview without executing' context. No contradiction; behavior is clearly stated.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, front-loaded sentence with no filler. Every word serves a purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite having an output schema, the description omits critical input parameter details (e.g., how to specify records, the difference between values and values_list). The agent needs more guidance to use the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage, the description provides no parameter details. The agent cannot determine what 'values', 'values_list', 'record_ids', etc., mean, severely limiting correct invocation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool previews create/write/unlink operations without execution. It uses specific verbs and resources, and distinguishes from siblings like 'execute_approved_write' or 'validate_write'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies use for dry-running operations without committing. It could explicitly say when not to use (e.g., when execution is needed), but the context from sibling names helps.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
read_attachmentBRead-onlyIdempotent
Read an ir.attachment's metadata and size-capped base64 content
| Name | Required | Description | Default |
|---|---|---|---|
| instance | No | ||
| include_data | No | ||
| attachment_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| tool | No | Reporting tool name. |
| error | No | Sanitized error message when success is false. |
| success | Yes | False when the call failed; see error. |
| warnings | No | |
| max_bytes | No | |
| attachment | No | ir.attachment metadata row. |
| data_base64 | No | Base64 content when under the size cap. |
| data_included | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false. The description adds the behavioral trait of 'size-capped base64 content', warning about potential truncation. This adds value beyond annotations, but only marginally.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence with no wasted words. However, it omits necessary parameter details, so it sacrifices completeness for brevity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has 3 parameters (one unexplained), the description is incomplete. It does not explain the optional parameters 'instance' and 'include_data'. Although an output schema exists, the missing parameter documentation is a significant gap.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0% and the description does not explain any parameter semantics. It does not clarify the meaning of 'instance' or 'include_data'. Only 'attachment_id' is inferable from context.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Read', the resource 'ir.attachment', and specifies what is read: 'metadata and size-capped base64 content'. This distinguishes it from sibling tools like 'read_record' or 'search_records'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
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. There is no mention of prerequisites or when-not-to-use. The purpose is clear but usage context is not provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
read_recordCRead-onlyIdempotent
Read a single Odoo record by model and ID
| Name | Required | Description | Default |
|---|---|---|---|
| model | Yes | ||
| fields | No | ||
| instance | No | ||
| record_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| tool | No | Reporting tool name. |
| error | No | Sanitized error message when success is false. |
| result | No | The record (field-ACL redacted). |
| success | Yes | False when the call failed; see error. |
| fields_used | No | |
| redacted_fields | No | |
| smart_fields_applied | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, destructiveHint. Description adds 'Read' which matches, but does not provide extra behavioral context (e.g., returns full record if fields omitted, or behavior when record not found). With annotations present, a score of 3 is appropriate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, no redundant words. Front-loaded with verb and resource. Could add more detail without being verbose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Output schema exists, so return value is documented. However, with 4 parameters and 0% schema coverage, the description is insufficient to fully guide usage. Sibling tools list is large, and description does not help differentiate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, so description must compensate. It mentions 'model' and 'record_id' implicitly, but does not explain the 'fields' and 'instance' parameters. No additional meaning beyond parameter names.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states verb 'read' and resource 'single Odoo record', with key parameters 'model and ID'. It distinguishes from sibling tools like search_records (which return multiple) and aggregate_records. However, it could explicitly differentiate from read_attachment.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
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 like search_records, get_model_fields, or execute_method. No context about prerequisites or limitations.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
receivable_payable_agingARead-onlyIdempotent
Aged receivable/payable report bucketed by days overdue
| Name | Required | Description | Default |
|---|---|---|---|
| as_of | No | Optional ISO date used as the aging reference date. | |
| limit | No | Maximum open-item lines to inspect. | |
| instance | No | Optional configured Odoo instance name; uses the default if omitted. | |
| direction | No | Aging direction: 'receivable' or 'payable'. | receivable |
| top_partners | No | Maximum top partners to include; capped at 100. |
Output Schema
| Name | Required | Description |
|---|---|---|
| tool | No | Reporting tool name. |
| as_of | No | |
| error | No | Sanitized error message when success is false. |
| buckets | No | |
| success | Yes | False when the call failed; see error. |
| partners | No | |
| direction | No | |
| truncated | No | |
| line_count | No | |
| partner_count | No | |
| skipped_lines | No | |
| total_outstanding | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnly, openWorld, idempotent, non-destructive, so the description doesn't contradict them. The description provides a good high-level behavior ('bucketed by days overdue') that complements annotations. However, it doesn't elaborate on side effects (though readOnly implies none) or specific data aggregation behavior, but given the annotations, this is adequate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is one sentence, concise and to the point. It communicates the core function without fluff. It could maybe expand on the output, but for a report tool, this is appropriately short.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is minimal but an output schema is present, so return values don't need explanation. However, it doesn't mention the meaning of 'open-item lines' or the purpose of the 'limit' parameter, which could be ambiguous. The tool complexity is moderate (5 params, all documented), so more context would help. Given the output schema exists, it's acceptable but could be slightly more complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
All parameters have descriptive schema descriptions: as_of (ISO date), limit (max lines), instance (optional Odoo instance), direction (receivable/payable), top_partners (max partners, capped). The description adds context by saying the report is 'bucketed by days overdue', which helps understand what 'as_of' and 'direction' mean. Since schema coverage is 100%, the parameter semantics are already well-covered, but the description reinforces the purpose.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool produces an 'Aged receivable/payable report' with a specific structure (bucketed by days overdue). It effectively conveys the core purpose and distinguishes it from general reporting tools. However, it doesn't explicitly differentiate from sibling tools like `accounting_health_summary` or `business_pack_report`, which might also involve financial reports.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for generating aging reports but provides no guidance on when to choose this over alternatives or prerequisites (e.g., configured Odoo connection, instance). Given sibling tools like `accounting_health_summary`, explicit when-to-use guidance is missing. The schema mentions 'instance' and 'direction', but the description doesn't clarify typical use cases.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
scan_addons_sourceARead-onlyIdempotent
Scan local Odoo addon source without importing addon code
| Name | Required | Description | Default |
|---|---|---|---|
| max_files | No | ||
| addons_paths | No | ||
| max_file_bytes | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint, idempotentHint, and non-destructive. The description adds the behavioral trait of avoiding code import, which is valuable context beyond annotations. Additional details about scanning behavior could improve transparency, but the description supplements annotations well.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, well-structured sentence that front-loads the core action and constraint. Every word earns its place with no redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the low complexity (3 optional parameters, output schema exists, annotations cover safety), the description is adequate but lacks details on return values or parameter constraints. It provides the essential purpose but could be more helpful with usage examples or output description.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description does not explain any of the three parameters (max_files, addons_paths, max_file_bytes). Schema description coverage is 0%, so the description bears the responsibility but fails to clarify their purpose or usage. Parameter names are self-explanatory to some extent, but the description adds no semantics.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool scans local Odoo addon source, with the key constraint 'without importing addon code', which distinguishes it from import operations. The verb 'scan' and resource 'local Odoo addon source' are specific.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides implied usage by stating it scans without importing, but does not explicitly state when to use this tool versus alternatives. It lacks guidance on when not to use it or how it compares to sibling tools like diagnose_odoo_call or read_record.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
schema_catalogARead-onlyIdempotent
Build and cache a bounded Odoo model schema catalog
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum catalog models to return; capped at 500. | |
| query | No | Optional text used to filter catalog models. | |
| models | No | Optional technical model names to include in the catalog. | |
| refresh | No | Whether to bypass and refresh the cached catalog. | |
| instance | No | Optional configured Odoo instance name; uses the default if omitted. | |
| include_fields | No | Whether to include field metadata for each model. |
Output Schema
| Name | Required | Description |
|---|---|---|
| tool | No | Reporting tool name. |
| count | No | |
| error | No | Sanitized error message when success is false. |
| result | No | Model entries; fields included when requested. |
| success | Yes | False when the call failed; see error. |
| metadata_used | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint false. The description adds value by stating that the tool builds and caches the catalog, implying that it is a read operation that may return cached data, and that it is bounded. This context enriches the understanding beyond annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no unnecessary words. Every word contributes to the purpose, making it highly concise and efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given that an output schema exists and annotations cover safety, the description is mostly complete. However, it does not explain the caching behavior in detail or mention the bounded nature explicitly, which could be helpful for an agent to understand the tool's scope. Still, it is sufficient for a tool with well-documented parameters and schema.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema documents all parameters fully. The description does not add any additional meaning or constraints beyond what the schema provides, meeting the baseline expectation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Build and cache') and the resource ('bounded Odoo model schema catalog'), which is specific and informative. It distinguishes from sibling tools like 'list_models' or 'get_model_fields' by emphasizing caching and boundedness, but does not explicitly contrast with them.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives no guidance on when to use this tool versus alternatives such as 'list_models', 'get_model_fields', or 'search_records'. No usage context, prerequisites, or exclusions are provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_across_instancesARead-onlyIdempotent
Read-only search fanned out across configured Odoo instances, merged and attributed
| Name | Required | Description | Default |
|---|---|---|---|
| model | Yes | ||
| domain | No | ||
| fields | No | ||
| instances | No | ||
| limit_per_instance | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| tool | No | Reporting tool name. |
| error | No | Sanitized error message when success is false. |
| model | No | |
| errors | No | |
| merged | No | |
| results | No | |
| success | Yes | False when the call failed; see error. |
| elapsed_ms | No | |
| merged_count | No | |
| instance_count | No | |
| skipped_opt_out | No | |
| instances_queried | No | |
| unknown_instances | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint=false. The description adds useful behavioral grounding with 'fanned out... merged and attributed', which explains the cross-instance orchestration and result attribution. It does not go into detail about attribution semantics or edge cases, but it complements the annotations well.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
This is a single, well-structured sentence that front-loads the key idea ('Read-only') and packs in scope and behavior without waste. It is concise while still being information-dense.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Within its parent object schema and annotations, this description is reasonably effective, and an output schema covers return value semantics. However, main gaps are the lack of parameter semantics and no explicit guidance around when to select this instead of related search_records or aggregate_across_instances. It is minimally complete but not richly enough for a complex fan-out tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the description provides essentially no parameter guidance. Parameter names like model, domain, instances, and limit_per_instance are somewhat self-explanatory, but the semantics of null defaults, the format of domain/instances, and how limit is applied are left unexplained.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('search'), names the resource (Odoo instances), and conveys a precise scope ('fan out across configured instances', 'merged and attributed'). It clearly distinguishes this from single-instance search_records and aggregate_across_instances.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase 'fanned out across configured Odoo instances' clearly indicates the main use case is multi-instance search. It does not explicitly name alternatives or list when not to use it, but the context is clear enough for an agent to choose it over search_records or aggregate_across_instances.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_employeeBRead-onlyIdempotent
Search for employees by name
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| limit | No | ||
| instance | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| error | No | Error message, if any |
| result | No | List of employee search results |
| success | Yes | Indicates if the search was successful |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds minimal behavioral context beyond the annotations. The annotations already indicate readOnly and idempotent behavior, so the description's statement 'Search for employees' is consistent but does not disclose details about pagination, instance handling, or other traits.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is very concise (one sentence), but it lacks critical details. It is appropriately front-loaded but fails to earn its keep by omitting parameter explanations or usage context.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has 3 parameters, no schema descriptions, and a substantial sibling list, the description is insufficient. It does not explain the purpose of 'limit' or 'instance', nor how this tool relates to other search tools. The presence of an output schema does not compensate for the lack of input guidance.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage, the description must compensate. It only hints at the 'name' parameter ('by name'), but does not explain 'limit' or 'instance'. This leaves the agent without necessary context for proper invocation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Search' and the specific resource 'employees' with a focus on searching by name. This distinguishes it from sibling tools like 'search_records' or 'search_holidays' which target different resources.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
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 'search_records' or 'search_across_instances'. It does not mention exclusions or context for choosing this tool over siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_holidaysARead-onlyIdempotent
Search for holidays within a date range
| Name | Required | Description | Default |
|---|---|---|---|
| end_date | Yes | End date in YYYY-MM-DD format. | |
| instance | No | Optional configured Odoo instance name; uses the default if omitted. | |
| start_date | Yes | Start date in YYYY-MM-DD format. | |
| employee_id | No | Optional employee ID used to filter holidays. |
Output Schema
| Name | Required | Description |
|---|---|---|
| error | No | Error message, if any |
| result | No | List of holidays found |
| success | Yes | Indicates if the search was successful |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint. The description does not add any behavioral context beyond what annotations provide, such as pagination or filtering behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single short sentence that is front-loaded with the key action and resource, containing no unnecessary words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity, presence of an output schema, and comprehensive annotations, the description is sufficient for understanding the tool's purpose. It could mention that it returns a list of holidays, but the output schema likely covers that.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% with each parameter adequately described. The tool description adds no additional parameter meaning beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool searches for holidays within a date range. The verb 'Search' and resource 'holidays' are specific, and it distinguishes from sibling search tools like search_records or search_employee.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for date-range holiday searches but provides no explicit guidance on when to use this tool versus alternatives, nor any exclusions or prerequisites.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_knowledgeCRead-onlyIdempotent
Relevance-ranked local BM25 search over previously indexed records
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| model | Yes | ||
| query | Yes | ||
| instance | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| tool | No | Reporting tool name. |
| error | No | Sanitized error message when success is false. |
| model | No | |
| query | No | |
| results | No | BM25-ranked snippets from the local index. |
| success | Yes | False when the call failed; see error. |
| instance | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already mark the tool as read-only, idempotent, and non-destructive. The description adds algorithmic detail (BM25, local) without contradicting annotations, but does not elaborate on side effects or scope.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, focused sentence with no redundancy or unnecessary details.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
While an output schema exists (so return values need not be explained), the description lacks parameter semantics and usage guidance, making it incomplete for effective invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema includes four parameters (query, model, limit, instance), but the description provides no explanation for any of them. This is a significant gap, and no compensation is made.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states it performs a search over indexed records with BM25 relevance ranking. The term 'local' distinguishes it from cross-instance search tools, though it could be more explicit about the scope.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is given on when to use this tool versus alternative search tools like search_records or search_across_instances. The 'local' hint is implicit but not elaborated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_recordsCRead-onlyIdempotent
Search Odoo records with read-only search_read; optional free-text query matches across name/ref/email-like fields
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| model | Yes | ||
| order | No | ||
| query | No | ||
| domain | No | ||
| fields | No | ||
| offset | No | ||
| instance | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| tool | No | Reporting tool name. |
| count | No | |
| error | No | Sanitized error message when success is false. |
| result | No | Matched records (field-ACL redacted). |
| success | Yes | False when the call failed; see error. |
| fields_used | No | |
| redacted_fields | No | |
| query_fields_used | No | Fields matched by the free-text query shortcut. |
| smart_fields_applied | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint=false. The description reinforces read-only behavior and adds context about query field matching, but does not disclose additional details like pagination, rate limits, or authorization needs.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence front-loading the core purpose. It is efficient but could benefit from a brief note about key parameters or guidance.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has 8 parameters and multiple siblings, the description is incomplete. It lacks details on domain syntax, field selection, ordering, and instance specification. The output schema exists but does not compensate for missing parameter guidance.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the description only mentions the 'query' parameter, explaining it matches across name/ref/email-like fields. The other 7 parameters (limit, offset, domain, fields, order, model, instance) receive no explanation, leaving the agent with minimal guidance.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it searches Odoo records using read-only search_read with optional free-text query matching across specific fields. However, it does not explicitly differentiate itself from sibling search tools like search_employee or search_across_instances, leaving some ambiguity about when to use each.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
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 versus the many specialized sibling search tools (e.g., search_employee, search_across_instances). The description implies it is generic but does not state exclusions or alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
submit_async_taskARead-onlyIdempotent
Run an allowlisted long-running read operation in the background
| Name | Required | Description | Default |
|---|---|---|---|
| params | No | ||
| instance | No | ||
| operation | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| name | No | |
| note | No | |
| tool | No | Reporting tool name. |
| error | No | Sanitized error message when success is false. |
| result | No | |
| status | No | |
| success | Yes | False when the call failed; see error. |
| task_id | No | |
| created_at | No | |
| started_at | No | |
| finished_at | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, so the description reinforces that by saying 'read operation'. It adds context beyond annotations by specifying 'allowlisted' (implying restrictions), 'long-running' (performance characteristics), and 'background' (execution model). No contradiction exists, and the extra detail is valuable though it does not cover error handling or cancellation behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, concise sentence with no redundant words. It delivers the core purpose effectively and is appropriately sized for a straightforward submission tool.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With an output schema present, the return value might be covered elsewhere, but the description fails to provide essential context about the operation allowlist, how to construct parameters, or whether an instance is required. For a tool that submits long-running tasks, users need to know what operations are permitted and how to structure inputs, which is missing. This makes the description incomplete for a 3-parameter tool with 0% schema coverage.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description carries full responsibility for explaining parameters. However, it only mentions 'operation' implicitly via the word 'operation' in the text, without defining what an operation is, how to specify parameters (params), or what instance refers to. The schema shows three parameters, but none are explained, making param semantics weak.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states a specific verb ('Run') and resource ('operation'), and adds qualifiers ('allowlisted', 'long-running', 'read', 'background') that distinguish it from sibling async tools like get_async_task, cancel_async_task, and list_async_tasks. It unambiguously communicates that this tool submits a background read task.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase 'long-running read operation' implies when to use it (for reads that take time), but it does not explicitly state when not to use it, mention alternatives like synchronous reads, or explain that results should be retrieved via get_async_task. The guidance is 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.
upgrade_risk_reportBRead-onlyIdempotent
Report Odoo upgrade and JSON-2 migration risks
| Name | Required | Description | Default |
|---|---|---|---|
| methods | No | Optional model method metadata to assess for compatibility. | |
| modules | No | Optional module metadata to assess for upgrade risks. | |
| include_debug | No | Whether to include additional diagnostic details. | |
| source_version | No | Optional current Odoo version. | |
| target_version | No | Optional target Odoo version. | |
| observed_errors | No | Optional observed upgrade or migration errors to classify. | |
| source_findings | No | Optional source-code findings to include in the risk report. | |
| use_live_metadata | No | Whether to request live metadata; this preview tool does not fetch it. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the description's statement 'Report...risks' is consistent but adds no new behavioral traits beyond confirming it is a report. No side effects, authentication needs, or response details are disclosed.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, clear sentence with no unnecessary words. It effectively communicates the tool's purpose without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite having an output schema, the description is too terse for a tool with 8 optional parameters. It does not explain how the parameters affect the risk report, what the output contains, or typical usage patterns, leaving gaps for an AI agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with each parameter having a clear description. The tool description does not elaborate on parameter usage or relationships, so it adds no value beyond the schema. Baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool reports Odoo upgrade and JSON-2 migration risks, specifying the resource and action. It distinguishes from siblings like 'analyze_upgrade_log' by focusing on a comprehensive risk report rather than log analysis, but could be more explicit about the scope.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
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 such as 'analyze_upgrade_log' or 'generate_json2_payload'. No context on prerequisites, typical use cases, or exclusions is given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
validate_writeBRead-onlyIdempotent
Validate a standard write payload against optional fields_get metadata
| Name | Required | Description | Default |
|---|---|---|---|
| model | Yes | ||
| values | No | ||
| context | No | ||
| instance | No | ||
| operation | Yes | ||
| record_ids | No | ||
| values_list | No | ||
| fields_metadata | No | ||
| use_live_metadata | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, destructiveHint=false, idempotentHint=true, and openWorldHint=true. The description adds that validation checks against optional fields_get metadata, but does not explain behavior on failure, return format, or side effects. With annotations, a score of 3 is appropriate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence, concise and front-loaded. However, it sacrifices informativeness for brevity, missing key details. Still, structure is clean.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 9 parameters, 0% coverage, and an output schema (unreferenced), the description is incomplete. It does not explain what constitutes a 'standard write payload', how fields_metadata is used, or what the validation result looks like. Essential context for a validation tool is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, yet the description provides no meaning for any of the 9 parameters (e.g., model, operation, values). It only mentions 'standard write payload' and 'fields_get metadata', leaving the agent guessing about parameter roles.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool validates a write payload against fields_get metadata, using a specific verb (validate) and resource (write payload), distinguishing it from sibling tools like 'preview_write' and 'execute_approved_write'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives like preview_write or execute_approved_write. The description lacks context on prerequisites, when validation is needed, or when to skip it.
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. Dates show when Glama detected each change.
13 tool updates
v1.3.1- Changed
accounting_health_across_instances18 fields changed- added
Output schema / additionalPropertiesAdded value: +true - added
Output schema / properties / as_ofAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "As Of" +} - added
Output schema / properties / combined_bucketsAdded value: +{ + "anyOf": [ + { + "additionalProperties": { + "type": "number" + }, + "type": "object" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Combined Buckets" +} - added
Output schema / properties / combined_total_outstandingAdded value: +{ + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Combined Total Outstanding" +} - added
Output schema / properties / directionAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Direction" +} - added
Output schema / properties / elapsed_msAdded value: +{ + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Elapsed Ms" +} - added
Output schema / properties / errorAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Sanitized error message when success is false.", + "title": "Error" +} - added
Output schema / properties / errorsAdded value: +{ + "anyOf": [ + { + "additionalProperties": { + "type": "string" + }, + "type": "object" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Errors" +} - added
Output schema / properties / instance_countAdded value: +{ + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Instance Count" +} - added
Output schema / properties / instances_queriedAdded value: +{ + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Instances Queried" +} - removed
Output schema / properties / resultRemoved value: -{ - "additionalProperties": true, - "title": "Result", - "type": "object" -} - added
Output schema / properties / resultsAdded value: +{ + "anyOf": [ + { + "additionalProperties": true, + "type": "object" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Results" +} - added
Output schema / properties / skipped_opt_outAdded value: +{ + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Skipped Opt Out" +} - added
Output schema / properties / successAdded value: +{ + "description": "False when the call failed; see error.", + "title": "Success", + "type": "boolean" +} - added
Output schema / properties / toolAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Reporting tool name.", + "title": "Tool" +} - added
Output schema / properties / unknown_instancesAdded value: +{ + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Unknown Instances" +} - changed
Output schema / requiredPrevious value: -[ - "result" -]New value: +[ + "success" +] - changed
Output schema / titlePrevious value: -"accounting_health_across_instancesOutput"New value: +"AccountingHealthAcrossInstancesResponse"
- Changed
accounting_health_summary10 fields changed- added
Output schema / additionalPropertiesAdded value: +true - added
Output schema / properties / draft_invoicesAdded value: +{ + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Draft Invoices" +} - added
Output schema / properties / errorAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Sanitized error message when success is false.", + "title": "Error" +} - added
Output schema / properties / open_payable_itemsAdded value: +{ + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Open Payable Items" +} - added
Output schema / properties / open_receivable_itemsAdded value: +{ + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Open Receivable Items" +} - removed
Output schema / properties / resultRemoved value: -{ - "additionalProperties": true, - "title": "Result", - "type": "object" -} - added
Output schema / properties / successAdded value: +{ + "description": "False when the call failed; see error.", + "title": "Success", + "type": "boolean" +} - added
Output schema / properties / toolAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Reporting tool name.", + "title": "Tool" +} - changed
Output schema / requiredPrevious value: -[ - "result" -]New value: +[ + "success" +] - changed
Output schema / titlePrevious value: -"accounting_health_summaryOutput"New value: +"AccountingHealthSummaryResponse"
- Changed
aggregate_across_instances17 fields changed- added
Output schema / additionalPropertiesAdded value: +true - added
Output schema / properties / combined_countAdded value: +{ + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Combined Count" +} - added
Output schema / properties / combined_measuresAdded value: +{ + "anyOf": [ + { + "additionalProperties": { + "type": "number" + }, + "type": "object" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Combined Measures" +} - added
Output schema / properties / elapsed_msAdded value: +{ + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Elapsed Ms" +} - added
Output schema / properties / errorAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Sanitized error message when success is false.", + "title": "Error" +} - added
Output schema / properties / errorsAdded value: +{ + "anyOf": [ + { + "additionalProperties": { + "type": "string" + }, + "type": "object" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Errors" +} - added
Output schema / properties / instance_countAdded value: +{ + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Instance Count" +} - added
Output schema / properties / instances_queriedAdded value: +{ + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Instances Queried" +} - added
Output schema / properties / modelAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Model" +} - removed
Output schema / properties / resultRemoved value: -{ - "additionalProperties": true, - "title": "Result", - "type": "object" -} - added
Output schema / properties / resultsAdded value: +{ + "anyOf": [ + { + "additionalProperties": true, + "type": "object" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Results" +} - added
Output schema / properties / skipped_opt_outAdded value: +{ + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Skipped Opt Out" +} - added
Output schema / properties / successAdded value: +{ + "description": "False when the call failed; see error.", + "title": "Success", + "type": "boolean" +} - added
Output schema / properties / toolAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Reporting tool name.", + "title": "Tool" +} - added
Output schema / properties / unknown_instancesAdded value: +{ + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Unknown Instances" +} - changed
Output schema / requiredPrevious value: -[ - "result" -]New value: +[ + "success" +] - changed
Output schema / titlePrevious value: -"aggregate_across_instancesOutput"New value: +"AggregateAcrossInstancesResponse"
- Changed
build_domain11 fields changed- added
Output schema / additionalPropertiesAdded value: +true - added
Output schema / properties / conditionsAdded value: +{ + "anyOf": [ + { + "items": { + "items": {}, + "type": "array" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Normalized field/operator/value conditions.", + "title": "Conditions" +} - added
Output schema / properties / domainAdded value: +{ + "anyOf": [ + { + "items": {}, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Validated Odoo domain expression.", + "title": "Domain" +} - added
Output schema / properties / errorAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Sanitized error message when success is false.", + "title": "Error" +} - added
Output schema / properties / issuesAdded value: +{ + "anyOf": [ + { + "items": { + "additionalProperties": true, + "type": "object" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Validation errors and warnings.", + "title": "Issues" +} - added
Output schema / properties / metadata_usedAdded value: +{ + "anyOf": [ + { + "additionalProperties": true, + "type": "object" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Metadata Used" +} - removed
Output schema / properties / resultRemoved value: -{ - "additionalProperties": true, - "title": "Result", - "type": "object" -} - added
Output schema / properties / successAdded value: +{ + "description": "False when the call failed; see error.", + "title": "Success", + "type": "boolean" +} - added
Output schema / properties / toolAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Reporting tool name.", + "title": "Tool" +} - changed
Output schema / requiredPrevious value: -[ - "result" -]New value: +[ + "success" +] - changed
Output schema / titlePrevious value: -"build_domainOutput"New value: +"BuildDomainResponse"
- Changed
cancel_async_task17 fields changed- added
Output schema / additionalPropertiesAdded value: +true - added
Output schema / properties / created_atAdded value: +{ + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Created At" +} - added
Output schema / properties / errorAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Sanitized error message when success is false.", + "title": "Error" +} - added
Output schema / properties / finished_atAdded value: +{ + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Finished At" +} - added
Output schema / properties / nameAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Name" +} - added
Output schema / properties / noteAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Note" +} - removed
Output schema / properties / result / additionalPropertiesRemoved value: -true - added
Output schema / properties / result / anyOfAdded value: +[ + { + "additionalProperties": true, + "type": "object" + }, + { + "type": "null" + } +] - added
Output schema / properties / result / defaultAdded value: +null - removed
Output schema / properties / result / typeRemoved value: -"object" - added
Output schema / properties / started_atAdded value: +{ + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Started At" +} - added
Output schema / properties / statusAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Status" +} - added
Output schema / properties / successAdded value: +{ + "description": "False when the call failed; see error.", + "title": "Success", + "type": "boolean" +} - added
Output schema / properties / task_idAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Task Id" +} - added
Output schema / properties / toolAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Reporting tool name.", + "title": "Tool" +} - changed
Output schema / requiredPrevious value: -[ - "result" -]New value: +[ + "success" +] - changed
Output schema / titlePrevious value: -"cancel_async_taskOutput"New value: +"AsyncTaskResponse"
- Changed
get_async_task17 fields changed- added
Output schema / additionalPropertiesAdded value: +true - added
Output schema / properties / created_atAdded value: +{ + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Created At" +} - added
Output schema / properties / errorAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Sanitized error message when success is false.", + "title": "Error" +} - added
Output schema / properties / finished_atAdded value: +{ + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Finished At" +} - added
Output schema / properties / nameAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Name" +} - added
Output schema / properties / noteAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Note" +} - removed
Output schema / properties / result / additionalPropertiesRemoved value: -true - added
Output schema / properties / result / anyOfAdded value: +[ + { + "additionalProperties": true, + "type": "object" + }, + { + "type": "null" + } +] - added
Output schema / properties / result / defaultAdded value: +null - removed
Output schema / properties / result / typeRemoved value: -"object" - added
Output schema / properties / started_atAdded value: +{ + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Started At" +} - added
Output schema / properties / statusAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Status" +} - added
Output schema / properties / successAdded value: +{ + "description": "False when the call failed; see error.", + "title": "Success", + "type": "boolean" +} - added
Output schema / properties / task_idAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Task Id" +} - added
Output schema / properties / toolAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Reporting tool name.", + "title": "Tool" +} - changed
Output schema / requiredPrevious value: -[ - "result" -]New value: +[ + "success" +] - changed
Output schema / titlePrevious value: -"get_async_taskOutput"New value: +"AsyncTaskResponse"
- Changed
index_knowledge16 fields changed- added
Output schema / additionalPropertiesAdded value: +true - added
Output schema / properties / documents_in_indexAdded value: +{ + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Documents In Index" +} - added
Output schema / properties / errorAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Sanitized error message when success is false.", + "title": "Error" +} - added
Output schema / properties / fetchedAdded value: +{ + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Fetched" +} - added
Output schema / properties / indexedAdded value: +{ + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Indexed" +} - added
Output schema / properties / indexed_fieldsAdded value: +{ + "anyOf": [ + {}, + { + "type": "null" + } + ], + "default": null, + "description": "Explicit field list or 'smart selection'.", + "title": "Indexed Fields" +} - added
Output schema / properties / instanceAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Instance" +} - added
Output schema / properties / max_documentsAdded value: +{ + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Max Documents" +} - added
Output schema / properties / modelAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Model" +} - added
Output schema / properties / redacted_fieldsAdded value: +{ + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Redacted Fields" +} - removed
Output schema / properties / resultRemoved value: -{ - "additionalProperties": true, - "title": "Result", - "type": "object" -} - added
Output schema / properties / skipped_over_budgetAdded value: +{ + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Skipped Over Budget" +} - added
Output schema / properties / successAdded value: +{ + "description": "False when the call failed; see error.", + "title": "Success", + "type": "boolean" +} - added
Output schema / properties / toolAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Reporting tool name.", + "title": "Tool" +} - changed
Output schema / requiredPrevious value: -[ - "result" -]New value: +[ + "success" +] - changed
Output schema / titlePrevious value: -"index_knowledgeOutput"New value: +"IndexKnowledgeResponse"
- Changed
knowledge_stats10 fields changed- added
Output schema / additionalPropertiesAdded value: +true - added
Output schema / properties / errorAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Sanitized error message when success is false.", + "title": "Error" +} - added
Output schema / properties / indexesAdded value: +{ + "anyOf": [ + { + "items": { + "additionalProperties": true, + "type": "object" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Indexes" +} - added
Output schema / properties / max_documentsAdded value: +{ + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Max Documents" +} - removed
Output schema / properties / resultRemoved value: -{ - "additionalProperties": true, - "title": "Result", - "type": "object" -} - added
Output schema / properties / successAdded value: +{ + "description": "False when the call failed; see error.", + "title": "Success", + "type": "boolean" +} - added
Output schema / properties / toolAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Reporting tool name.", + "title": "Tool" +} - added
Output schema / properties / total_documentsAdded value: +{ + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Total Documents" +} - changed
Output schema / requiredPrevious value: -[ - "result" -]New value: +[ + "success" +] - changed
Output schema / titlePrevious value: -"knowledge_statsOutput"New value: +"KnowledgeStatsResponse"
- Changed
list_async_tasks8 fields changed- added
Output schema / additionalPropertiesAdded value: +true - added
Output schema / properties / errorAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Sanitized error message when success is false.", + "title": "Error" +} - removed
Output schema / properties / resultRemoved value: -{ - "additionalProperties": true, - "title": "Result", - "type": "object" -} - added
Output schema / properties / successAdded value: +{ + "description": "False when the call failed; see error.", + "title": "Success", + "type": "boolean" +} - added
Output schema / properties / tasksAdded value: +{ + "anyOf": [ + { + "items": { + "additionalProperties": true, + "type": "object" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Tasks" +} - added
Output schema / properties / toolAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Reporting tool name.", + "title": "Tool" +} - changed
Output schema / requiredPrevious value: -[ - "result" -]New value: +[ + "success" +] - changed
Output schema / titlePrevious value: -"list_async_tasksOutput"New value: +"ListAsyncTasksResponse"
- Changed
receivable_payable_aging16 fields changed- added
Output schema / additionalPropertiesAdded value: +true - added
Output schema / properties / as_ofAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "As Of" +} - added
Output schema / properties / bucketsAdded value: +{ + "anyOf": [ + { + "additionalProperties": true, + "type": "object" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Buckets" +} - added
Output schema / properties / directionAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Direction" +} - added
Output schema / properties / errorAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Sanitized error message when success is false.", + "title": "Error" +} - added
Output schema / properties / line_countAdded value: +{ + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Line Count" +} - added
Output schema / properties / partner_countAdded value: +{ + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Partner Count" +} - added
Output schema / properties / partnersAdded value: +{ + "anyOf": [ + { + "items": { + "additionalProperties": true, + "type": "object" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Partners" +} - removed
Output schema / properties / resultRemoved value: -{ - "additionalProperties": true, - "title": "Result", - "type": "object" -} - added
Output schema / properties / skipped_linesAdded value: +{ + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Skipped Lines" +} - added
Output schema / properties / successAdded value: +{ + "description": "False when the call failed; see error.", + "title": "Success", + "type": "boolean" +} - added
Output schema / properties / toolAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Reporting tool name.", + "title": "Tool" +} - added
Output schema / properties / total_outstandingAdded value: +{ + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Total Outstanding" +} - added
Output schema / properties / truncatedAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Truncated" +} - changed
Output schema / requiredPrevious value: -[ - "result" -]New value: +[ + "success" +] - changed
Output schema / titlePrevious value: -"receivable_payable_agingOutput"New value: +"ReceivablePayableAgingResponse"
- Changed
search_across_instances17 fields changed- added
Output schema / additionalPropertiesAdded value: +true - added
Output schema / properties / elapsed_msAdded value: +{ + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Elapsed Ms" +} - added
Output schema / properties / errorAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Sanitized error message when success is false.", + "title": "Error" +} - added
Output schema / properties / errorsAdded value: +{ + "anyOf": [ + { + "additionalProperties": { + "type": "string" + }, + "type": "object" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Errors" +} - added
Output schema / properties / instance_countAdded value: +{ + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Instance Count" +} - added
Output schema / properties / instances_queriedAdded value: +{ + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Instances Queried" +} - added
Output schema / properties / mergedAdded value: +{ + "anyOf": [ + { + "items": { + "additionalProperties": true, + "type": "object" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Merged" +} - added
Output schema / properties / merged_countAdded value: +{ + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Merged Count" +} - added
Output schema / properties / modelAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Model" +} - removed
Output schema / properties / resultRemoved value: -{ - "additionalProperties": true, - "title": "Result", - "type": "object" -} - added
Output schema / properties / resultsAdded value: +{ + "anyOf": [ + { + "additionalProperties": true, + "type": "object" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Results" +} - added
Output schema / properties / skipped_opt_outAdded value: +{ + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Skipped Opt Out" +} - added
Output schema / properties / successAdded value: +{ + "description": "False when the call failed; see error.", + "title": "Success", + "type": "boolean" +} - added
Output schema / properties / toolAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Reporting tool name.", + "title": "Tool" +} - added
Output schema / properties / unknown_instancesAdded value: +{ + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Unknown Instances" +} - changed
Output schema / requiredPrevious value: -[ - "result" -]New value: +[ + "success" +] - changed
Output schema / titlePrevious value: -"search_across_instancesOutput"New value: +"SearchAcrossInstancesResponse"
- Changed
search_knowledge11 fields changed- added
Output schema / additionalPropertiesAdded value: +true - added
Output schema / properties / errorAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Sanitized error message when success is false.", + "title": "Error" +} - added
Output schema / properties / instanceAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Instance" +} - added
Output schema / properties / modelAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Model" +} - added
Output schema / properties / queryAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Query" +} - removed
Output schema / properties / resultRemoved value: -{ - "additionalProperties": true, - "title": "Result", - "type": "object" -} - added
Output schema / properties / resultsAdded value: +{ + "anyOf": [ + { + "items": { + "additionalProperties": true, + "type": "object" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "description": "BM25-ranked snippets from the local index.", + "title": "Results" +} - added
Output schema / properties / successAdded value: +{ + "description": "False when the call failed; see error.", + "title": "Success", + "type": "boolean" +} - added
Output schema / properties / toolAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Reporting tool name.", + "title": "Tool" +} - changed
Output schema / requiredPrevious value: -[ - "result" -]New value: +[ + "success" +] - changed
Output schema / titlePrevious value: -"search_knowledgeOutput"New value: +"SearchKnowledgeResponse"
- Changed
submit_async_task17 fields changed- added
Output schema / additionalPropertiesAdded value: +true - added
Output schema / properties / created_atAdded value: +{ + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Created At" +} - added
Output schema / properties / errorAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Sanitized error message when success is false.", + "title": "Error" +} - added
Output schema / properties / finished_atAdded value: +{ + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Finished At" +} - added
Output schema / properties / nameAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Name" +} - added
Output schema / properties / noteAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Note" +} - removed
Output schema / properties / result / additionalPropertiesRemoved value: -true - added
Output schema / properties / result / anyOfAdded value: +[ + { + "additionalProperties": true, + "type": "object" + }, + { + "type": "null" + } +] - added
Output schema / properties / result / defaultAdded value: +null - removed
Output schema / properties / result / typeRemoved value: -"object" - added
Output schema / properties / started_atAdded value: +{ + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Started At" +} - added
Output schema / properties / statusAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Status" +} - added
Output schema / properties / successAdded value: +{ + "description": "False when the call failed; see error.", + "title": "Success", + "type": "boolean" +} - added
Output schema / properties / task_idAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Task Id" +} - added
Output schema / properties / toolAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Reporting tool name.", + "title": "Tool" +} - changed
Output schema / requiredPrevious value: -[ - "result" -]New value: +[ + "success" +] - changed
Output schema / titlePrevious value: -"submit_async_taskOutput"New value: +"AsyncTaskResponse"
10 tool updates
v1.2.1- Changed
accounting_health_across_instances4 fields changed- added
Input schema / properties / as_of / descriptionAdded value: +"Optional ISO date used as the aging reference date." - added
Input schema / properties / direction / descriptionAdded value: +"Aging direction: 'receivable' or 'payable'." - added
Input schema / properties / instances / descriptionAdded value: +"Optional instance selector; defaults to all eligible instances." - added
Input schema / properties / top_partners / descriptionAdded value: +"Maximum top partners to include in each aging report; capped at 100."
- Changed
business_pack_report3 fields changed- added
Input schema / properties / instance / descriptionAdded value: +"Optional configured Odoo instance name; uses the default if omitted." - added
Input schema / properties / pack / descriptionAdded value: +"Business pack to report, such as sales, crm, inventory, accounting, or hr." - added
Input schema / properties / use_live_metadata / descriptionAdded value: +"Whether to inspect live models and installed modules."
- Changed
diagnose_access9 fields changed- added
Input schema / properties / domain / descriptionAdded value: +"Optional Odoo domain used for the visibility check." - added
Input schema / properties / expected_count / descriptionAdded value: +"Optional expected visible record count for comparison." - added
Input schema / properties / include_rules / descriptionAdded value: +"Whether to include matching record-rule metadata." - added
Input schema / properties / instance / descriptionAdded value: +"Optional configured Odoo instance name; uses the default if omitted." - added
Input schema / properties / limit / descriptionAdded value: +"Maximum metadata rows to inspect; capped at 500." - added
Input schema / properties / model / descriptionAdded value: +"Technical Odoo model name to inspect." - added
Input schema / properties / observed_error / descriptionAdded value: +"Optional error text or structured error to classify." - added
Input schema / properties / operation / descriptionAdded value: +"Access operation to diagnose, such as read or write." - added
Input schema / properties / record_ids / descriptionAdded value: +"Optional record IDs to check directly."
- Changed
diagnose_odoo_call10 fields changed- added
Input schema / properties / args / descriptionAdded value: +"Optional positional call arguments." - added
Input schema / properties / include_debug / descriptionAdded value: +"Whether to include additional diagnostic details." - added
Input schema / properties / kwargs / descriptionAdded value: +"Optional keyword call arguments." - added
Input schema / properties / metadata / descriptionAdded value: +"Optional model or method metadata used by the diagnosis." - added
Input schema / properties / method / descriptionAdded value: +"Odoo model method name to diagnose." - added
Input schema / properties / model / descriptionAdded value: +"Technical Odoo model name to diagnose." - added
Input schema / properties / observed_error / descriptionAdded value: +"Optional error text or structured error to classify." - added
Input schema / properties / target_version / descriptionAdded value: +"Optional target Odoo version for compatibility checks." - added
Input schema / properties / transport / descriptionAdded value: +"Transport to assess, such as 'auto', 'xmlrpc', or 'json2'." - added
Input schema / properties / use_live_metadata / descriptionAdded value: +"Whether to request live metadata; this preview tool does not fetch it."
- Changed
execute_method5 fields changed- added
Input schema / properties / args / descriptionAdded value: +"Optional positional method arguments." - added
Input schema / properties / instance / descriptionAdded value: +"Optional configured Odoo instance name; uses the default if omitted." - added
Input schema / properties / kwargs / descriptionAdded value: +"Optional keyword method arguments." - added
Input schema / properties / method / descriptionAdded value: +"Odoo model method to call; direct create, write, and unlink are blocked." - added
Input schema / properties / model / descriptionAdded value: +"Technical Odoo model name, for example 'res.partner'."
- Changed
get_odoo_profile3 fields changed- added
Input schema / properties / include_modules / descriptionAdded value: +"Whether to include installed-module metadata." - added
Input schema / properties / instance / descriptionAdded value: +"Optional configured Odoo instance name; uses the default if omitted." - added
Input schema / properties / module_limit / descriptionAdded value: +"Maximum installed modules to include; capped at 500."
- Changed
receivable_payable_aging5 fields changed- added
Input schema / properties / as_of / descriptionAdded value: +"Optional ISO date used as the aging reference date." - added
Input schema / properties / direction / descriptionAdded value: +"Aging direction: 'receivable' or 'payable'." - added
Input schema / properties / instance / descriptionAdded value: +"Optional configured Odoo instance name; uses the default if omitted." - added
Input schema / properties / limit / descriptionAdded value: +"Maximum open-item lines to inspect." - added
Input schema / properties / top_partners / descriptionAdded value: +"Maximum top partners to include; capped at 100."
- Changed
schema_catalog6 fields changed- added
Input schema / properties / include_fields / descriptionAdded value: +"Whether to include field metadata for each model." - added
Input schema / properties / instance / descriptionAdded value: +"Optional configured Odoo instance name; uses the default if omitted." - added
Input schema / properties / limit / descriptionAdded value: +"Maximum catalog models to return; capped at 500." - added
Input schema / properties / models / descriptionAdded value: +"Optional technical model names to include in the catalog." - added
Input schema / properties / query / descriptionAdded value: +"Optional text used to filter catalog models." - added
Input schema / properties / refresh / descriptionAdded value: +"Whether to bypass and refresh the cached catalog."
- Changed
search_holidays4 fields changed- added
Input schema / properties / employee_id / descriptionAdded value: +"Optional employee ID used to filter holidays." - added
Input schema / properties / end_date / descriptionAdded value: +"End date in YYYY-MM-DD format." - added
Input schema / properties / instance / descriptionAdded value: +"Optional configured Odoo instance name; uses the default if omitted." - added
Input schema / properties / start_date / descriptionAdded value: +"Start date in YYYY-MM-DD format."
- Changed
upgrade_risk_report8 fields changed- added
Input schema / properties / include_debug / descriptionAdded value: +"Whether to include additional diagnostic details." - added
Input schema / properties / methods / descriptionAdded value: +"Optional model method metadata to assess for compatibility." - added
Input schema / properties / modules / descriptionAdded value: +"Optional module metadata to assess for upgrade risks." - added
Input schema / properties / observed_errors / descriptionAdded value: +"Optional observed upgrade or migration errors to classify." - added
Input schema / properties / source_findings / descriptionAdded value: +"Optional source-code findings to include in the risk report." - added
Input schema / properties / source_version / descriptionAdded value: +"Optional current Odoo version." - added
Input schema / properties / target_version / descriptionAdded value: +"Optional target Odoo version." - added
Input schema / properties / use_live_metadata / descriptionAdded value: +"Whether to request live metadata; this preview tool does not fetch it."
12 tool updates
v1.1.0- Changed
aggregate_records15 fields changed- added
Output schema / additionalPropertiesAdded value: +true - added
Output schema / properties / errorAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Sanitized error message when success is false.", + "title": "Error" +} - added
Output schema / properties / fallback_reasonAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Fallback Reason" +} - added
Output schema / properties / group_byAdded value: +{ + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Group By" +} - added
Output schema / properties / major_versionAdded value: +{ + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Major Version" +} - added
Output schema / properties / measuresAdded value: +{ + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Measures" +} - added
Output schema / properties / methodAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "formatted_read_group (19+) or read_group.", + "title": "Method" +} - added
Output schema / properties / modelAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Model" +} - removed
Output schema / properties / resultRemoved value: -{ - "additionalProperties": true, - "title": "Result", - "type": "object" -} - added
Output schema / properties / row_countAdded value: +{ + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Row Count" +} - added
Output schema / properties / rowsAdded value: +{ + "anyOf": [ + { + "items": { + "additionalProperties": true, + "type": "object" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Aggregated group rows.", + "title": "Rows" +} - added
Output schema / properties / successAdded value: +{ + "description": "False when the call failed; see error.", + "title": "Success", + "type": "boolean" +} - added
Output schema / properties / toolAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Reporting tool name.", + "title": "Tool" +} - changed
Output schema / requiredPrevious value: -[ - "result" -]New value: +[ + "success" +] - changed
Output schema / titlePrevious value: -"aggregate_recordsOutput"New value: +"AggregateRecordsResponse"
- Added
analyze_upgrade_log - Added
data_quality_report - Changed
get_model_fields15 fields changed- added
Output schema / additionalPropertiesAdded value: +true - added
Output schema / properties / countAdded value: +{ + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Count" +} - added
Output schema / properties / errorAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Sanitized error message when success is false.", + "title": "Error" +} - added
Output schema / properties / rankingAdded value: +{ + "anyOf": [ + { + "items": { + "additionalProperties": true, + "type": "object" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Relevance scores when relevance=\"top\".", + "title": "Ranking" +} - added
Output schema / properties / relevance_appliedAdded value: +{ + "anyOf": [ + { + "type": "boolean" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Relevance Applied" +} - added
Output schema / properties / restricted_fieldsAdded value: +{ + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Fields marked restricted by the field ACL.", + "title": "Restricted Fields" +} - removed
Output schema / properties / result / additionalPropertiesRemoved value: -true - added
Output schema / properties / result / anyOfAdded value: +[ + { + "additionalProperties": true, + "type": "object" + }, + { + "type": "null" + } +] - added
Output schema / properties / result / defaultAdded value: +null - added
Output schema / properties / result / descriptionAdded value: +"Mapping of field name to fields_get metadata." - removed
Output schema / properties / result / typeRemoved value: -"object" - added
Output schema / properties / successAdded value: +{ + "description": "False when the call failed; see error.", + "title": "Success", + "type": "boolean" +} - added
Output schema / properties / toolAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Reporting tool name.", + "title": "Tool" +} - changed
Output schema / requiredPrevious value: -[ - "result" -]New value: +[ + "success" +] - changed
Output schema / titlePrevious value: -"get_model_fieldsOutput"New value: +"GetModelFieldsResponse"
- Changed
get_odoo_profile9 fields changed- added
Output schema / additionalPropertiesAdded value: +true - added
Output schema / properties / errorAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Sanitized error message when success is false.", + "title": "Error" +} - added
Output schema / properties / metadata_usedAdded value: +{ + "anyOf": [ + { + "additionalProperties": true, + "type": "object" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Metadata Used" +} - added
Output schema / properties / profileAdded value: +{ + "anyOf": [ + { + "additionalProperties": true, + "type": "object" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Server, user-context, transport, and module metadata.", + "title": "Profile" +} - removed
Output schema / properties / resultRemoved value: -{ - "additionalProperties": true, - "title": "Result", - "type": "object" -} - added
Output schema / properties / successAdded value: +{ + "description": "False when the call failed; see error.", + "title": "Success", + "type": "boolean" +} - added
Output schema / properties / toolAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Reporting tool name.", + "title": "Tool" +} - changed
Output schema / requiredPrevious value: -[ - "result" -]New value: +[ + "success" +] - changed
Output schema / titlePrevious value: -"get_odoo_profileOutput"New value: +"GetOdooProfileResponse"
- Changed
health_check11 fields changed- added
Output schema / additionalPropertiesAdded value: +true - added
Output schema / properties / errorAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Sanitized error message when success is false.", + "title": "Error" +} - added
Output schema / properties / pluginsAdded value: +{ + "anyOf": [ + { + "additionalProperties": true, + "type": "object" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Opt-in plugin load state and tool filtering.", + "title": "Plugins" +} - added
Output schema / properties / rate_limitsAdded value: +{ + "anyOf": [ + { + "additionalProperties": true, + "type": "object" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Rate Limits" +} - removed
Output schema / properties / resultRemoved value: -{ - "additionalProperties": true, - "title": "Result", - "type": "object" -} - added
Output schema / properties / runtimeAdded value: +{ + "anyOf": [ + { + "additionalProperties": true, + "type": "object" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Non-secret runtime security posture.", + "title": "Runtime" +} - added
Output schema / properties / serverAdded value: +{ + "anyOf": [ + { + "additionalProperties": true, + "type": "object" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Server name, instructions, surface counts.", + "title": "Server" +} - added
Output schema / properties / successAdded value: +{ + "description": "False when the call failed; see error.", + "title": "Success", + "type": "boolean" +} - added
Output schema / properties / toolAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Reporting tool name.", + "title": "Tool" +} - changed
Output schema / requiredPrevious value: -[ - "result" -]New value: +[ + "success" +] - changed
Output schema / titlePrevious value: -"health_checkOutput"New value: +"HealthCheckResponse"
- Changed
list_instances10 fields changed- added
Output schema / additionalPropertiesAdded value: +true - added
Output schema / properties / defaultAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Name of the default instance.", + "title": "Default" +} - added
Output schema / properties / errorAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Sanitized error message when success is false.", + "title": "Error" +} - added
Output schema / properties / instance_countAdded value: +{ + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Instance Count" +} - added
Output schema / properties / instancesAdded value: +{ + "anyOf": [ + { + "items": { + "additionalProperties": true, + "type": "object" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Instance entries (never credentials).", + "title": "Instances" +} - removed
Output schema / properties / resultRemoved value: -{ - "additionalProperties": true, - "title": "Result", - "type": "object" -} - added
Output schema / properties / successAdded value: +{ + "description": "False when the call failed; see error.", + "title": "Success", + "type": "boolean" +} - added
Output schema / properties / toolAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Reporting tool name.", + "title": "Tool" +} - changed
Output schema / requiredPrevious value: -[ - "result" -]New value: +[ + "success" +] - changed
Output schema / titlePrevious value: -"list_instancesOutput"New value: +"ListInstancesResponse"
- Changed
list_models12 fields changed- added
Output schema / $defsAdded value: +{ + "ModelSummary": { + "additionalProperties": true, + "description": "One model entry from list_models / schema_catalog.", + "properties": { + "model": { + "description": "Technical model name, e.g. res.partner.", + "title": "Model", + "type": "string" + }, + "name": { + "default": "", + "description": "Human display name.", + "title": "Name", + "type": "string" + } + }, + "required": [ + "model" + ], + "title": "ModelSummary", + "type": "object" + } +} - added
Output schema / additionalPropertiesAdded value: +true - added
Output schema / properties / countAdded value: +{ + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Count" +} - added
Output schema / properties / errorAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Sanitized error message when success is false.", + "title": "Error" +} - removed
Output schema / properties / result / additionalPropertiesRemoved value: -true - added
Output schema / properties / result / anyOfAdded value: +[ + { + "items": { + "$ref": "#/$defs/ModelSummary" + }, + "type": "array" + }, + { + "type": "null" + } +] - added
Output schema / properties / result / defaultAdded value: +null - removed
Output schema / properties / result / typeRemoved value: -"object" - added
Output schema / properties / successAdded value: +{ + "description": "False when the call failed; see error.", + "title": "Success", + "type": "boolean" +} - added
Output schema / properties / toolAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Reporting tool name.", + "title": "Tool" +} - changed
Output schema / requiredPrevious value: -[ - "result" -]New value: +[ + "success" +] - changed
Output schema / titlePrevious value: -"list_modelsOutput"New value: +"ListModelsResponse"
- Changed
read_attachment12 fields changed- added
Output schema / additionalPropertiesAdded value: +true - added
Output schema / properties / attachmentAdded value: +{ + "anyOf": [ + { + "additionalProperties": true, + "type": "object" + }, + { + "type": "null" + } + ], + "default": null, + "description": "ir.attachment metadata row.", + "title": "Attachment" +} - added
Output schema / properties / data_base64Added value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Base64 content when under the size cap.", + "title": "Data Base64" +} - added
Output schema / properties / data_includedAdded value: +{ + "anyOf": [ + { + "type": "boolean" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Data Included" +} - added
Output schema / properties / errorAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Sanitized error message when success is false.", + "title": "Error" +} - added
Output schema / properties / max_bytesAdded value: +{ + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Max Bytes" +} - removed
Output schema / properties / resultRemoved value: -{ - "additionalProperties": true, - "title": "Result", - "type": "object" -} - added
Output schema / properties / successAdded value: +{ + "description": "False when the call failed; see error.", + "title": "Success", + "type": "boolean" +} - added
Output schema / properties / toolAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Reporting tool name.", + "title": "Tool" +} - added
Output schema / properties / warningsAdded value: +{ + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Warnings" +} - changed
Output schema / requiredPrevious value: -[ - "result" -]New value: +[ + "success" +] - changed
Output schema / titlePrevious value: -"read_attachmentOutput"New value: +"ReadAttachmentResponse"
- Changed
read_record14 fields changed- added
Output schema / additionalPropertiesAdded value: +true - added
Output schema / properties / errorAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Sanitized error message when success is false.", + "title": "Error" +} - added
Output schema / properties / fields_usedAdded value: +{ + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Fields Used" +} - added
Output schema / properties / redacted_fieldsAdded value: +{ + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Redacted Fields" +} - removed
Output schema / properties / result / additionalPropertiesRemoved value: -true - added
Output schema / properties / result / anyOfAdded value: +[ + { + "additionalProperties": true, + "type": "object" + }, + { + "type": "null" + } +] - added
Output schema / properties / result / defaultAdded value: +null - added
Output schema / properties / result / descriptionAdded value: +"The record (field-ACL redacted)." - removed
Output schema / properties / result / typeRemoved value: -"object" - added
Output schema / properties / smart_fields_appliedAdded value: +{ + "anyOf": [ + { + "type": "boolean" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Smart Fields Applied" +} - added
Output schema / properties / successAdded value: +{ + "description": "False when the call failed; see error.", + "title": "Success", + "type": "boolean" +} - added
Output schema / properties / toolAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Reporting tool name.", + "title": "Tool" +} - changed
Output schema / requiredPrevious value: -[ - "result" -]New value: +[ + "success" +] - changed
Output schema / titlePrevious value: -"read_recordOutput"New value: +"ReadRecordResponse"
- Changed
schema_catalog14 fields changed- added
Output schema / $defsAdded value: +{ + "ModelSummary": { + "additionalProperties": true, + "description": "One model entry from list_models / schema_catalog.", + "properties": { + "model": { + "description": "Technical model name, e.g. res.partner.", + "title": "Model", + "type": "string" + }, + "name": { + "default": "", + "description": "Human display name.", + "title": "Name", + "type": "string" + } + }, + "required": [ + "model" + ], + "title": "ModelSummary", + "type": "object" + } +} - added
Output schema / additionalPropertiesAdded value: +true - added
Output schema / properties / countAdded value: +{ + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Count" +} - added
Output schema / properties / errorAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Sanitized error message when success is false.", + "title": "Error" +} - added
Output schema / properties / metadata_usedAdded value: +{ + "anyOf": [ + { + "additionalProperties": true, + "type": "object" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Metadata Used" +} - removed
Output schema / properties / result / additionalPropertiesRemoved value: -true - added
Output schema / properties / result / anyOfAdded value: +[ + { + "items": { + "$ref": "#/$defs/ModelSummary" + }, + "type": "array" + }, + { + "type": "null" + } +] - added
Output schema / properties / result / defaultAdded value: +null - added
Output schema / properties / result / descriptionAdded value: +"Model entries; fields included when requested." - removed
Output schema / properties / result / typeRemoved value: -"object" - added
Output schema / properties / successAdded value: +{ + "description": "False when the call failed; see error.", + "title": "Success", + "type": "boolean" +} - added
Output schema / properties / toolAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Reporting tool name.", + "title": "Tool" +} - changed
Output schema / requiredPrevious value: -[ - "result" -]New value: +[ + "success" +] - changed
Output schema / titlePrevious value: -"schema_catalogOutput"New value: +"SchemaCatalogResponse"
- Changed
search_records16 fields changed- added
Output schema / additionalPropertiesAdded value: +true - added
Output schema / properties / countAdded value: +{ + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Count" +} - added
Output schema / properties / errorAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Sanitized error message when success is false.", + "title": "Error" +} - added
Output schema / properties / fields_usedAdded value: +{ + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Fields Used" +} - added
Output schema / properties / query_fields_usedAdded value: +{ + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Fields matched by the free-text query shortcut.", + "title": "Query Fields Used" +} - added
Output schema / properties / redacted_fieldsAdded value: +{ + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Redacted Fields" +} - removed
Output schema / properties / result / additionalPropertiesRemoved value: -true - added
Output schema / properties / result / anyOfAdded value: +[ + { + "items": { + "additionalProperties": true, + "type": "object" + }, + "type": "array" + }, + { + "type": "null" + } +] - added
Output schema / properties / result / defaultAdded value: +null - added
Output schema / properties / result / descriptionAdded value: +"Matched records (field-ACL redacted)." - removed
Output schema / properties / result / typeRemoved value: -"object" - added
Output schema / properties / smart_fields_appliedAdded value: +{ + "anyOf": [ + { + "type": "boolean" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Smart Fields Applied" +} - added
Output schema / properties / successAdded value: +{ + "description": "False when the call failed; see error.", + "title": "Success", + "type": "boolean" +} - added
Output schema / properties / toolAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Reporting tool name.", + "title": "Tool" +} - changed
Output schema / requiredPrevious value: -[ - "result" -]New value: +[ + "success" +] - changed
Output schema / titlePrevious value: -"search_recordsOutput"New value: +"SearchRecordsResponse"
32 tool updates
v1.0.0- Added
accounting_health_across_instances - Added
accounting_health_summary - Added
aggregate_across_instances - Changed
aggregate_records1 field changed- added
Input schema / properties / instanceAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Instance" +}
- Changed
business_pack_report1 field changed- added
Input schema / properties / instanceAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Instance" +}
- Added
cancel_async_task - Changed
chatter_post1 field changed- added
Input schema / properties / instanceAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Instance" +}
- Changed
diagnose_access2 fields changed- added
Input schema / properties / instanceAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Instance" +} - added
Input schema / properties / observed_errorAdded value: +{ + "anyOf": [ + {}, + { + "type": "null" + } + ], + "default": null, + "title": "Observed Error" +}
- Changed
execute_approved_write2 fields changed- changed
Input schema / titlePrevious value: -"execute_approved_writeArguments"New value: +"execute_approved_write_toolArguments" - changed
Output schema / titlePrevious value: -"execute_approved_writeOutput"New value: +"execute_approved_write_toolOutput"
- Changed
execute_method1 field changed- added
Input schema / properties / instanceAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Instance" +}
- Added
get_async_task - Changed
get_model_fields3 fields changed- added
Input schema / properties / instanceAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Instance" +} - added
Input schema / properties / max_fieldsAdded value: +{ + "default": 30, + "title": "Max Fields", + "type": "integer" +} - added
Input schema / properties / relevanceAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Relevance" +}
- Changed
get_odoo_profile1 field changed- added
Input schema / properties / instanceAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Instance" +}
- Added
index_knowledge - Changed
inspect_model_relationships1 field changed- added
Input schema / properties / instanceAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Instance" +}
- Added
knowledge_stats - Added
list_async_tasks - Added
list_instances - Changed
list_models1 field changed- added
Input schema / properties / instanceAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Instance" +}
- Added
lookup_model_history - Changed
preview_write2 fields changed- added
Input schema / properties / instanceAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Instance" +} - added
Input schema / properties / values_listAdded value: +{ + "anyOf": [ + { + "items": { + "additionalProperties": true, + "type": "object" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Values List" +}
- Added
read_attachment - Changed
read_record1 field changed- added
Input schema / properties / instanceAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Instance" +}
- Added
receivable_payable_aging - Changed
schema_catalog1 field changed- added
Input schema / properties / instanceAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Instance" +}
- Added
search_across_instances - Changed
search_employee1 field changed- added
Input schema / properties / instanceAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Instance" +}
- Changed
search_holidays1 field changed- added
Input schema / properties / instanceAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Instance" +}
- Added
search_knowledge - Changed
search_records2 fields changed- added
Input schema / properties / instanceAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Instance" +} - added
Input schema / properties / queryAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Query" +}
- Added
submit_async_task - Changed
validate_write2 fields changed- added
Input schema / properties / instanceAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Instance" +} - added
Input schema / properties / values_listAdded value: +{ + "anyOf": [ + { + "items": { + "additionalProperties": true, + "type": "object" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Values List" +}
2 tool updates
v0.3.0- Added
aggregate_records - Added
chatter_post
22 tool updates
v0.2.0- First observed
build_domain - First observed
business_pack_report - First observed
diagnose_access - First observed
diagnose_odoo_call - First observed
execute_approved_write - First observed
execute_method - First observed
fit_gap_report - First observed
generate_json2_payload - First observed
get_model_fields - First observed
get_odoo_profile - First observed
health_check - First observed
inspect_model_relationships - First observed
list_models - First observed
preview_write - First observed
read_record - First observed
scan_addons_source - First observed
schema_catalog - First observed
search_employee - First observed
search_holidays - First observed
search_records - First observed
upgrade_risk_report - First observed
validate_write
TDQS
Most tools have clearly distinct purposes thanks to detailed descriptions, but some overlap exists between similar-sounding tools like 'aggregate_across_instances' and 'aggregate_records', or multiple 'report' tools. Agents may occasionally confuse them without careful reading.
Tool names consistently use underscores and are generally descriptive, combining verbs and nouns (e.g., list_models, search_records). However, there are some deviations like 'accounting_health_summary' vs 'accounting_health_across_instances' and phrases that alternate verb-first and noun-first patterns.
With 41 tools, the set is heavy and exceeds typical MCP server scopes. While Odoo is a complex ERP, many tools could be consolidated (e.g., combining across-instance variants or merging related reports). This count may overwhelm agents and reduce effective selection.
The tool set covers a broad range of Odoo functionalities: CRUD, accounting, model inspection, background tasks, knowledge indexing, and upgrade analysis. Minor gaps exist (e.g., no direct user management or specific business object CRUD), but the suite is comprehensive for a management/analysis server.
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 Connectors
MCP server unifying ERPs, CRMs, APIs and knowledge base for Claude, ChatGPT and Gemini.
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
- ZapierOAuthcom.zapier
Hosted MCP server connecting AI assistants to 9,000+ apps and 40,000+ actions via Zapier.
The Mercado Pago MCP Server implements the Model Context Protocol to provide AI agents and LLMs with access to Mercado Pago's APIs and tools within compatible development environments. It acts as an intermediary that translates Mercado Pago resources into executable functions (tools) that AI applications can invoke to perform actions and automate flows. The server simplifies integration, enables using documentation to implement or improve code, and optimizes operations through natural language interactions without manual implementations.
Related MCP Servers
- AlicenseBqualityDmaintenanceAn MCP server that enables AI assistants to interact with Odoo ERP apps like Inventory, CRM, Sales, and Manufacturing. It allows users to read, create, and manage Odoo records and workflows using natural language commands.25241ISC
- AlicenseNot gradedqualityCmaintenanceAn MCP server that connects AI assistants to Odoo ERP instances via the built-in XML-RPC API without requiring any additional addons. It enables users to search, create, update, and manage Odoo records and models through natural language.54MIT
- AlicenseNot gradedqualityCmaintenanceAn MCP server that enables AI assistants to interact with Odoo ERP, allowing natural language queries, record creation, updates, and deletions.LGPL 3.0
- AlicenseNot gradedqualityAmaintenanceAn MCP server that enables AI assistants to interact with Odoo ERP systems, allowing natural language access to business data, CRUD operations, and instance management without requiring Odoo module installation.1MIT
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/erpipe-org/mcp-odoo'
If you have feedback or need assistance with the MCP directory API, please join our Discord server