We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/industream/mcp-odoo'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•468 B
"""
MCP Odoo - Model Context Protocol server for Odoo ERP.
A production-ready MCP server providing tools for interacting with Odoo.
"""
from .config import settings
from .client import OdooClient, OdooClientFactory
from .exceptions import OdooError, OdooConnectionError, OdooAuthenticationError
__version__ = "2.0.0"
__all__ = [
"settings",
"OdooClient",
"OdooClientFactory",
"OdooError",
"OdooConnectionError",
"OdooAuthenticationError",
]