PPanda Odoo Mcp ServerThe Odoo MCP Server is a standardized interface for interacting with Odoo instances through the MCP (Model Context Protocol). It provides support for: Communication Protocols: stdio: Direct communication via stdin/stdout streamable_http: HTTP communication with streaming response support Resource Management: Odoo records (single and list) Binary fields Real-time updates Tools: Search and read records Create and update records Delete records Call custom methods Security: Authentication and session management Rate limiting CORS for streamable_http connections
mcp-so:panda-odoo-mcp-server_pandeussilvae
View sourceA
100/100 First Seen
Feb 19, 2026
Last Scanned
Feb 20, 2026
Findings
1
Score
100/100
LOW 1
Findings (1)
LOW
npx MCP server without version pin
L97 Detects MCP server configs using npx to run packages without version pinning
"command": "npx" FIX
Pin the npx package in the MCP config to an exact version (e.g., @scope/server@1.2.3). Unpinned npx commands can silently fetch a compromised package version.
FP?
Likely FP if the MCP config is a local development setup example, though unpinned npx in production configs is a real supply chain risk.