{
  "serverInfo": {
    "name": "S. Demetriou Contractors MCP Server",
    "version": "1.0.0"
  },
  "transport": {
    "type": "http",
    "endpoint": "https://sdemetriou.com/.well-known/mcp"
  },
  "capabilities": {
    "tools": true,
    "resources": true,
    "prompts": false
  },
  "tools": [
    {
      "name": "list_projects",
      "description": "List all construction projects with details, images, location, and category.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "category": { "type": "string", "enum": ["all", "residential", "commercial"] }
        }
      }
    },
    {
      "name": "get_specifications",
      "description": "Get detailed construction specifications by category.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "category": { "type": "string", "enum": ["structural", "thermal", "electrical", "plumbing", "finishes", "external"] }
        }
      }
    },
    {
      "name": "contact_inquiry",
      "description": "Submit a contact inquiry for a construction project.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "name": { "type": "string" },
          "email": { "type": "string" },
          "phone": { "type": "string" },
          "project_type": { "type": "string" },
          "message": { "type": "string" }
        },
        "required": ["name", "email", "message"]
      }
    }
  ]
}
