{
  "$schema": "https://modelcontextprotocol.io/schemas/server-card/v1.json",
  "serverInfo": {
    "name": "SmarteeDigital MCP Server",
    "version": "1.0.0",
    "description": "Official Model Context Protocol server exposing SmarteeDigital venture portfolio, enterprise engineering services, and C4 architecture ADRs."
  },
  "endpoint": "https://smarteedigital.com/api/mcp",
  "transport": {
    "type": "streamable-http",
    "endpoint": "https://smarteedigital.com/api/mcp"
  },
  "capabilities": {
    "tools": {
      "listChanged": true,
      "items": [
        {
          "name": "get_ventures",
          "description": "List proprietary venture studio portfolio including TradingMaster.app, AI-Reception.ist, and TinyCTO.tv with live metrics and tech stacks.",
          "inputSchema": {
            "type": "object",
            "properties": {
              "locale": {
                "type": "string",
                "enum": [
                  "en",
                  "tr"
                ],
                "description": "Target language locale (default: en)"
              }
            }
          }
        },
        {
          "name": "get_services",
          "description": "List enterprise software engineering verticals (AI Transformation, Custom Software, SRE/DevSecOps, QA, Software Architecture, Fractional CTO).",
          "inputSchema": {
            "type": "object",
            "properties": {
              "locale": {
                "type": "string",
                "enum": [
                  "en",
                  "tr"
                ],
                "description": "Target language locale (default: en)"
              }
            }
          }
        },
        {
          "name": "search_architecture_adrs",
          "description": "Search and retrieve public Architectural Decision Records (ADRs) and C4 system models.",
          "inputSchema": {
            "type": "object",
            "properties": {
              "query": {
                "type": "string",
                "description": "Search keyword (e.g., Rust, Blue-Green, WebSockets, ClickHouse)"
              },
              "locale": {
                "type": "string",
                "enum": [
                  "en",
                  "tr"
                ],
                "description": "Target language locale (default: en)"
              }
            }
          }
        },
        {
          "name": "submit_inquiry",
          "description": "Submit an enterprise project inquiry or consultation request to SmarteeDigital executive team.",
          "inputSchema": {
            "type": "object",
            "properties": {
              "name": {
                "type": "string",
                "description": "Contact person or agent identifier"
              },
              "email": {
                "type": "string",
                "description": "Contact email"
              },
              "service": {
                "type": "string",
                "description": "Selected service vertical"
              },
              "budget": {
                "type": "string",
                "description": "Budget tier"
              },
              "message": {
                "type": "string",
                "description": "Project scope details"
              }
            },
            "required": [
              "name",
              "email",
              "service",
              "message"
            ]
          }
        }
      ]
    },
    "resources": {
      "listChanged": false,
      "items": [
        {
          "uri": "smarteedigital://ventures",
          "name": "Venture Studio Portfolio",
          "mimeType": "application/json"
        },
        {
          "uri": "smarteedigital://services",
          "name": "Enterprise Engineering Services",
          "mimeType": "application/json"
        },
        {
          "uri": "smarteedigital://architecture/adrs",
          "name": "Architectural Decision Records Catalog",
          "mimeType": "application/json"
        }
      ]
    },
    "prompts": {
      "listChanged": false,
      "items": [
        {
          "name": "enterprise_inquiry_evaluator",
          "description": "Analyze an enterprise tech stack and recommend suitable SmarteeDigital engagement models."
        }
      ]
    }
  }
}