{
    "$schema": "https://modelcontextprotocol.io/schema/server-card.json",
    "serverInfo": {
        "name": "hemtrix-mcp-server",
        "title": "Hemtrix MCP Server",
        "version": "1.0.0",
        "description": "Exposes software development services, project case studies, and customer inquiry workflows to AI assistants and autonomous agents."
    },
    "transport": {
        "type": "sse",
        "url": "https://hemtrix.com/mcp/sse"
    },
    "capabilities": {
        "tools": {
            "listChanged": true
        },
        "resources": {
            "subscribe": false,
            "listChanged": true
        },
        "prompts": {
            "listChanged": false
        }
    },
    "tools": [
        {
            "name": "get_services",
            "description": "List all professional software engineering, cloud, mobile app, and UI/UX design services offered by Hemtrix.",
            "inputSchema": {
                "type": "object",
                "properties": {},
                "required": []
            }
        },
        {
            "name": "get_portfolio_projects",
            "description": "Retrieve delivered case studies, tech stacks, and architecture results from Hemtrix.",
            "inputSchema": {
                "type": "object",
                "properties": {},
                "required": []
            }
        },
        {
            "name": "submit_inquiry",
            "description": "Submit a project brief, consultation request, or technical inquiry to the Hemtrix engineering team.",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "name": {
                        "type": "string",
                        "description": "Client or representative name"
                    },
                    "email": {
                        "type": "string",
                        "description": "Contact email address"
                    },
                    "phone": {
                        "type": "string",
                        "description": "Contact phone or WhatsApp number"
                    },
                    "service": {
                        "type": "string",
                        "description": "Target service (e.g., Custom Website Development, Software Development)"
                    },
                    "message": {
                        "type": "string",
                        "description": "Project brief or requirements description"
                    }
                },
                "required": [
                    "name",
                    "email",
                    "message"
                ]
            }
        }
    ]
}