{
  "$schema": "https://modelcontextprotocol.io/schemas/server-card/1.0",
  "name": "Cillex AI MCP Server",
  "description": "Read-only public information about Cillex AI — services, pricing, platform primers, glossary, benchmark data — exposed for AI agents and copilots.",
  "version": "0.1.0",
  "contact": {
    "name": "Cillex AI",
    "email": "hello@cillexai.com",
    "url": "https://cillexai.com"
  },
  "capabilities": {
    "tools": [
      {
        "name": "list_services",
        "description": "List Cillex AI service offerings with pricing.",
        "input_schema": { "type": "object", "properties": {}, "required": [] }
      },
      {
        "name": "get_pricing",
        "description": "Get pricing tiers for a specific service.",
        "input_schema": {
          "type": "object",
          "properties": {
            "service": { "type": "string", "enum": ["managed-openai-ads", "consulting", "training", "geo-aeo", "multi-llm"] }
          },
          "required": ["service"]
        }
      },
      {
        "name": "get_cpc_benchmark",
        "description": "Get median CPC by category and platform from the latest Cillex Index data.",
        "input_schema": {
          "type": "object",
          "properties": {
            "category": { "type": "string" },
            "platform": { "type": "string", "enum": ["openai-ads", "perplexity", "gemini"] }
          },
          "required": []
        }
      },
      {
        "name": "list_cohorts",
        "description": "List upcoming Cillex AI training cohorts with dates and seats remaining.",
        "input_schema": { "type": "object", "properties": {}, "required": [] }
      },
      {
        "name": "request_audit",
        "description": "Submit a free audit request. Returns a confirmation ID and ETA.",
        "input_schema": {
          "type": "object",
          "properties": {
            "name": { "type": "string" },
            "email": { "type": "string", "format": "email" },
            "company": { "type": "string" },
            "url": { "type": "string", "format": "uri" },
            "monthly_spend": { "type": "string" },
            "goal": { "type": "string" }
          },
          "required": ["name", "email", "company", "url"]
        }
      }
    ],
    "resources": [
      { "name": "llms.txt", "uri": "https://cillexai.com/llms.txt", "mime_type": "text/markdown" },
      { "name": "agents.json", "uri": "https://cillexai.com/agents.json", "mime_type": "application/json" },
      { "name": "openai-ads-guide", "uri": "https://cillexai.com/guide/openai-ads", "mime_type": "text/html" },
      { "name": "glossary", "uri": "https://cillexai.com/glossary", "mime_type": "text/html" },
      { "name": "cillex-index", "uri": "https://cillexai.com/the-index", "mime_type": "text/html" }
    ]
  },
  "transport": "http",
  "endpoint": "https://cillexai.com/api/mcp.php",
  "status": "planned-q4-2026",
  "notes": "The HTTP MCP endpoint is planned for Q4 2026. Until then, the resources above are reachable via standard HTTP GET. The tools described above are the planned shape — agents should treat them as design-time documentation, not live calls.",
  "updated": "2026-05-29"
}
