Machine-readable Model Context Protocol endpoints for BezelIQ AI integrations.
BezelIQ exposes capabilities as Model Context Protocol (MCP) servers so that AI assistants (Claude, Cursor, Windsurf, OpenAI Agents, etc.) can call BezelIQ tools directly from within a conversation.
This page lists all available MCP endpoints, what each one does, and how to configure your AI client to use them.
Search BezelIQ Oro Commerce documentation and selected application source. Ideal for developers building on or integrating with Oro Commerce.
POST https://mcp.bezeliq.ai/oro Tools
Streamable HTTP (stateless). Each POST to /oro is a complete MCP request/response.
No persistent session required.
None required for public endpoints.
{
"mcpServers": {
"oro-docs": {
"transport": "streamable-http",
"url": "https://mcp.bezeliq.ai/oro"
}
}
}
{
"mcpServers": {
"oro-docs": {
"url": "https://mcp.bezeliq.ai/oro",
"transport": "http"
}
}
}
{
"mcpServers": {
"oro-docs": {
"serverUrl": "https://mcp.bezeliq.ai/oro",
"transport": "streamableHttp"
}
}
}
// Keyword search — docs + source
{ "tool": "search_oro", "arguments": { "query": "WorkflowBundle transition", "limit": 5 } }
// Docs only
{ "tool": "search_oro", "arguments": { "query": "storefront theme configuration", "corpus": "docs" } }
// Source only
{ "tool": "search_oro", "arguments": { "query": "MessageQueueBundle consumer", "corpus": "source" } }
// Semantic (degrades to keyword if OPENAI_API_KEY not set)
{ "tool": "search_oro", "arguments": { "query": "entity config", "mode": "semantic" } }
// Find all files mentioning workflows
{ "tool": "query_docs_filesystem_oro", "arguments": { "command": "grep -rl WorkflowBundle DOCS_ROOT" } }
// List documentation sections
{ "tool": "query_docs_filesystem_oro", "arguments": { "command": "ls DOCS_ROOT" } }
// Read a specific doc
{ "tool": "query_docs_filesystem_oro", "arguments": { "command": "cat DOCS_ROOT/workflow/index.rst" } }
| Path | Method | Description |
|---|---|---|
| / | GET | This catalog page |
| /oro | POST | Oro Docs MCP endpoint (MCP protocol) |
| /oro | GET | Human-readable Oro endpoint docs |
| /cards | GET | JSON list of all MCP cards |
| /cards/oro | GET | Oro Docs MCP card (JSON) |
| /health | GET | Health check |