{
    "$schema": "https://modelcontextprotocol.io/schemas/server-card-v1.json",
    "serverInfo": {
        "name": "pahissa-pie-mcp",
        "title": "Pahissa Pié MCP Server",
        "version": "1.0.0",
        "description": "MCP Server for textile custom printing."
    },
    "transport": {
        "type": "sse",
        "url": "https://www.pahissapie.com/api/mcp/sse"
    },
    "capabilities": {
        "tools": {
            "list": true
        },
        "resources": {
            "list": true
        },
        "prompts": {
            "list": true
        }
    },
    "tools": [
        {
            "name": "search_catalog",
            "description": "Search garments at Pahissa Pié.",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "query": {
                        "type": "string"
                    }
                }
            }
        },
        {
            "name": "calculate_quote",
            "description": "Calculate wholesale custom printing price.",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "garment_type": {
                        "type": "string"
                    },
                    "quantity": {
                        "type": "integer"
                    }
                },
                "required": [
                    "garment_type",
                    "quantity"
                ]
            }
        }
    ]
}