{
  "$schema": "https://static.modelcontextprotocol.io/schema/server-card.json",
  "serverInfo": {
    "name": "eagentix-mcp",
    "title": "Eagentix AI Agent Platform MCP Server",
    "version": "1.0.0",
    "description": "Model Context Protocol interface for Eagentix Enterprise Autonomous Systems, Strategy Roadmaps, and Agentic Services."
  },
  "transport": {
    "type": "sse",
    "endpoint": "https://eagentix.com/api/mcp/sse"
  },
  "capabilities": {
    "tools": {
      "listChanged": true
    },
    "resources": {
      "subscribe": false,
      "listChanged": true
    },
    "prompts": {
      "listChanged": true
    }
  },
  "tools": [
    {
      "name": "get_agent_info",
      "description": "Retrieve specifications and capabilities for enterprise AI agents (Cloud Architect, Data Engineer, SQL Agent, KYC, SDR, Recruiter, etc.)",
      "inputSchema": {
        "type": "object",
        "properties": {
          "agent_key": {
            "type": "string",
            "description": "Identifier of the agent (e.g., 'cloud-architect', 'data-engineer', 'sql-agent')"
          }
        },
        "required": [
          "agent_key"
        ]
      }
    },
    {
      "name": "book_assessment",
      "description": "Submit a request for an Enterprise AI Readiness Assessment or Strategy Session.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "email": {
            "type": "string",
            "description": "Corporate email address"
          },
          "company": {
            "type": "string",
            "description": "Company name"
          },
          "interest": {
            "type": "string",
            "description": "Area of interest (Strategy, Platform, WaaS)"
          }
        },
        "required": [
          "email",
          "company"
        ]
      }
    }
  ]
}