{
  "$schema": "https://modelcontextprotocol.io/schemas/server-card.json",
  "serverInfo": {
    "name": "umersmx-portfolio-mcp",
    "title": "Muhammad Umer Farooq Portfolio & Agent Server",
    "version": "1.0.0",
    "description": "MCP server exposing portfolio information, skills, project showcases, and contact capabilities for Muhammad Umer Farooq."
  },
  "transport": {
    "type": "http-sse",
    "endpoint": "https://umersmx.vercel.app/sse"
  },
  "capabilities": {
    "tools": {
      "listChanged": false
    },
    "resources": {
      "subscribe": false,
      "listChanged": false
    },
    "prompts": {
      "listChanged": false
    }
  },
  "tools": [
    {
      "name": "get_profile",
      "description": "Get detailed professional profile and bio of Muhammad Umer Farooq",
      "inputSchema": {
        "type": "object",
        "properties": {}
      }
    },
    {
      "name": "list_projects",
      "description": "List all full-stack, AI, and computer vision projects created by Muhammad Umer Farooq",
      "inputSchema": {
        "type": "object",
        "properties": {
          "category": {
            "type": "string",
            "description": "Filter by category: fullstack, ai, web"
          }
        }
      }
    },
    {
      "name": "get_skills",
      "description": "Get list of technical skills and proficiencies across languages, frontend, backend, and tools",
      "inputSchema": {
        "type": "object",
        "properties": {}
      }
    },
    {
      "name": "send_contact_message",
      "description": "Send a message or collaboration inquiry to Muhammad Umer Farooq",
      "inputSchema": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "email": {
            "type": "string"
          },
          "message": {
            "type": "string"
          }
        },
        "required": [
          "name",
          "email",
          "message"
        ]
      }
    }
  ],
  "resources": [
    {
      "uri": "portfolio://llms.txt",
      "name": "LLM Context Documentation",
      "mimeType": "text/markdown"
    },
    {
      "uri": "portfolio://skills",
      "name": "Technical Skills Matrix",
      "mimeType": "application/json"
    }
  ]
}
