{
  "$schema": "https://modelcontextprotocol.io/schemas/server-card.json",
  "mcpVersion": "2024-11-05",
  "serverInfo": {
    "name": "oh-my-ai",
    "version": "1.0.0",
    "description": "Oh my AI Model Context Protocol (MCP) server: production AI systems, intake scoping, and enterprise agent capabilities."
  },
  "transport": {
    "type": "streamable-http",
    "endpoint": "/api/mcp"
  },
  "capabilities": {
    "tools": {
      "listChanged": false
    }
  },
  "tools": [
    {
      "name": "get_services",
      "description": "Enumerate Oh my AI production capabilities: AI agents, GPT applications, workflow automations, and custom integrations.",
      "inputSchema": {
        "type": "object",
        "properties": {}
      }
    },
    {
      "name": "estimate_timeline",
      "description": "Calculate delivery timeline, milestones, and architectural tiers for an automation use case.",
      "inputSchema": {
        "type": "object",
        "required": ["systemType", "processComplexity"],
        "properties": {
          "systemType": {
            "type": "string",
            "enum": ["agent", "gpt", "automation", "integration"]
          },
          "processComplexity": {
            "type": "string",
            "enum": ["standard", "complex", "enterprise"]
          }
        }
      }
    },
    {
      "name": "submit_inquiry",
      "description": "Programmatically submit project requirements or consultation requests to Oh my AI engineering team.",
      "inputSchema": {
        "type": "object",
        "required": ["process", "email", "name"],
        "properties": {
          "process": { "type": "string" },
          "email": { "type": "string" },
          "name": { "type": "string" },
          "company": { "type": "string" }
        }
      }
    },
    {
      "name": "get_company_info",
      "description": "Retrieve verified legal entity details, KvK registration, Maastricht headquarters, and contact points.",
      "inputSchema": {
        "type": "object",
        "properties": {}
      }
    }
  ]
}
