{
  "name": "SixPercent MCP Server",
  "version": "1.0.0",
  "description": "Model Context Protocol manifest for SixPercent AI real estate platform",
  "url": "https://sixpercent.ai",
  "tools": [
    {
      "name": "search-properties",
      "description": "Search for FSBO properties by location and price",
      "inputSchema": {
        "type": "object",
        "properties": {
          "location": { "type": "string", "description": "City, state, or country" },
          "max_price": { "type": "number", "description": "Maximum price in USD" },
          "bedrooms": { "type": "number" }
        }
      }
    },
    {
      "name": "calculate-savings",
      "description": "Calculate commission savings vs traditional 6% agent",
      "inputSchema": {
        "type": "object",
        "properties": {
          "home_price": { "type": "number", "description": "Home sale price in USD" }
        },
        "required": ["home_price"]
      }
    }
  ]
}
