{
  "mcpVersion": "1.0.0",
  "serverInfo": {
    "name": "DwellMint Studio Agent Server",
    "version": "1.2.0",
    "description": "Exposes DwellMint Studio's luxury interior design projects and interactive UI tools to AI agents."
  },
  "endpoints": [
    {
      "uri": "https://dwellmint.studio/api/mcp/sse",
      "transport": "sse",
      "name": "DwellMint Studio SSE Transport"
    },
    {
      "uri": "https://dwellmint.studio/api/mcp/post",
      "transport": "http-post",
      "name": "DwellMint Studio HTTP POST Transport"
    }
  ],
  "capabilities": {
    "resources": {
      "list": [
        {
          "uri": "https://dwellmint.studio/project_metadata.json",
          "name": "Project Metadata",
          "description": "Full dataset of luxury interior projects in Bangalore.",
          "mimeType": "application/json"
        },
        {
          "uri": "ui://dwellmint.studio/playbook",
          "name": "Interactive Playbook UI",
          "description": "A visual interface for exploring luxury categories and designer styles.",
          "mimeType": "text/html"
        },
        {
          "uri": "ui://dwellmint.studio/pricing-estimator",
          "name": "Investment Estimator UI",
          "description": "Interactive tool for calculating luxury project costs.",
          "mimeType": "text/html"
        }
      ]
    },
    "tools": {
      "list": [
        {
          "name": "get_project_details",
          "description": "Get detailed architectural highlights for a specific project.",
          "inputSchema": {
            "type": "object",
            "properties": {
              "projectId": { "type": "string" }
            },
            "required": ["projectId"]
          },
          "_meta": {
            "ui": {
              "resourceUri": "ui://dwellmint.studio/playbook"
            }
          }
        },
        {
          "name": "calculate_investment",
          "description": "Calculate the starting investment for a luxury interior project based on category and BHK.",
          "inputSchema": {
            "type": "object",
            "properties": {
              "category": { "type": "string", "enum": ["Kitchen", "Wardrobe", "Full Home"] },
              "bhk": { "type": "integer", "enum": [2, 3, 4] }
            }
          },
          "_meta": {
            "ui": {
              "resourceUri": "ui://dwellmint.studio/pricing-estimator"
            }
          }
        }
      ]
    }
  }
}
