← Documentation home
—
/hyax-api/mcpMCP introduction
Hyax runs a stateless Streamable HTTP MCP server at POST /hyax-api/mcp. Connect Cursor, Claude Desktop, or any MCP-compatible agent using the same team API key as the REST API (Authorization: Bearer hx_…). The server exposes JSON-RPC 2.0 methods (initialize, tools/list, tools/call) over HTTP POST. GET requests return 405. Generate an API key under Settings → Team → API.
Base URL: https://platform.hyax.com · Replace YOUR_API_KEY with your team API key.
Example response
Shape varies by data; values are illustrative.
// Cursor / Claude Desktop (streamable HTTP)
{
"url": "https://your-domain.com/hyax-api/mcp",
"headers": {
"Authorization": "Bearer hx_your_api_key"
}
}
// Claude Desktop mcpServers config (claude_desktop_config.json)
{
"mcpServers": {
"hyax": {
"url": "https://your-domain.com/hyax-api/mcp",
"headers": {
"Authorization": "Bearer hx_your_api_key"
}
}
}
}