Odoo Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Odoo Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A Model Context Protocol (MCP) server that provides LLMs with read-only access to Odoo databases. This server exposes Odoo models and records through the MCP protocol, allowing AI assistants to query and analyze your Odoo data.
Install directly with uvx (recommended):
A Model Context Protocol (MCP) server that provides LLMs with read-only access to Odoo databases. This server exposes Odoo models and records through the MCP protocol, allowing AI assistants to query and analyze your Odoo data.
Install directly with uvx (recommended):
uvx odoorpc-mcpCreate a .vscode/mcp.json in your workspace with:
{
"servers": {
"odoo": {
"type": "stdio",
"command": "uvx",
"args": [
"odoorpc-mcp"
],
"env": {
"ODOO_URL": "${input:odoo_url}",
"ODOO_DB": "${input:odoo_db}",
"ODOO_USERNAME": "${input:odoo_username}",
"ODOO_PASSWORD": "${input:odoo_password}"
}
}
},
"inputs": [
{
"id": "odoo_url",
"type": "promptString",
"description": "Odoo Server URL (e.g., https://your-odoo.com)"
},
{
"id": "odoo_db",
"type": "promptString",
"description": "Odoo Database Name"
},
{
"id": "odoo_username",
"type": "promptString",
"description": "Odoo Username"
},
{
"id": "odoo_password",
"type": "promptString",
"description": "Odoo Password",
"password": true
}
]
}Alternatively, put credentials in a .env file in your workspace:
ODOO_URL=https://your-odoo-instance.com
ODOO_DB=your_database
ODOO_USERNAME=your_username
ODOO_PASSWORD=your_passwordodoorpc-mcp --config-exampleodoorpc-mcp --versionodoorpc-mcpBuild locally:
uv buildRun from source:
PYTHONPATH=src python3 -m odoo_mcp.cli --config-exampleMIT
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.