{
  "mcpVersion": "1.0",
  "serverInfo": {
    "name": "clotairedamy.com",
    "displayName": "Clotaire Damy — UI/UX Designer & Digital Marketer",
    "version": "1.0.0",
    "description": "Portfolio and contact tools for Clotaire Damy, UI/UX designer and digital marketer based in Colorado Springs, CO."
  },
  "tools": [
    {
      "name": "contact",
      "displayName": "Send a Message",
      "description": "Send a contact message to Clotaire Damy. Use this to start a conversation about a project, ask a question, or request a quote.",
      "endpoint": "https://clotairedamy.com/api/contact",
      "method": "POST",
      "contentType": "application/json",
      "inputSchema": {
        "type": "object",
        "properties": {
          "name":    { "type": "string", "description": "Full name of the sender", "maxLength": 120 },
          "email":   { "type": "string", "format": "email", "description": "Email address for reply" },
          "project": { "type": "string", "description": "Brief description of the project or topic", "maxLength": 200 },
          "message": { "type": "string", "description": "The message body", "maxLength": 2000 }
        },
        "required": ["name", "email", "message"]
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "ok":      { "type": "boolean" },
          "message": { "type": "string" }
        }
      }
    },
    {
      "name": "get_info",
      "displayName": "Get Contact Info",
      "description": "Returns public contact and availability information for Clotaire Damy.",
      "type": "static",
      "response": {
        "email": "hello@clotairedamy.com",
        "instagram": "https://www.instagram.com/clotaire.damy",
        "location": "Colorado Springs, CO, USA",
        "availability": "Open to remote projects globally",
        "responseTime": "Within 24 hours",
        "services": ["UI/UX Design", "Digital Marketing", "Technical SEO", "Web App Development", "Branding"]
      }
    }
  ]
}
