{
  "$schema": "https://raw.githubusercontent.com/modelcontextprotocol/modelcontextprotocol/main/schema/server-card.json",
  "serverInfo": {
    "name": "verde-capital-mcp",
    "title": "Verde Capital MCP Server",
    "version": "1.0.0",
    "description": "MCP Server providing AI agents access to Verde Capital product specifications, lab certifications, dosage guidance, and customer inquiries."
  },
  "transport": {
    "type": "sse",
    "endpoint": "https://verdecapitalgrowers.com/api/mcp/sse"
  },
  "capabilities": {
    "tools": [
      {
        "name": "get_product_catalog",
        "description": "Returns full specifications of Verde Capital cannabis products, including cannabinoid ratios (CBD/THC), formats, and applications.",
        "inputSchema": {
          "type": "object",
          "properties": {
            "category": {
              "type": "string",
              "enum": ["all", "flowers", "oils", "topicals", "seeds"],
              "description": "Product category to filter"
            }
          }
        }
      },
      {
        "name": "calculate_dosage_estimate",
        "description": "Calculates recommended starting dosage estimates based on individual wellness goals, cannabinoid target, and product concentration.",
        "inputSchema": {
          "type": "object",
          "properties": {
            "target": { "type": "string", "enum": ["sleep", "stress", "recovery", "focus", "general"] },
            "experience_level": { "type": "string", "enum": ["beginner", "intermediate", "experienced"] }
          },
          "required": ["target", "experience_level"]
        }
      },
      {
        "name": "send_inquiry",
        "description": "Submits a client or wholesale inquiry directly to Verde Capital support.",
        "inputSchema": {
          "type": "object",
          "properties": {
            "name": { "type": "string" },
            "email": { "type": "string" },
            "message": { "type": "string" }
          },
          "required": ["name", "email", "message"]
        }
      }
    ]
  }
}
