{
  "$schema": "https://modelcontextprotocol.io/schemas/server-card.json",
  "serverInfo": {
    "name": "fiorum-design-studio",
    "title": "Fiorum Strategic Design & Packaging Studio MCP Server",
    "version": "1.0.0",
    "description": "Official MCP server for Fiorum Studio. Enables AI agents to query design capabilities, case studies (branding, packaging, editorial), and submit project brief inquiries."
  },
  "endpoint": "https://fiorum.net/wp-json/fiorum/v1/mcp",
  "transport": "streamable-http",
  "capabilities": {
    "tools": {
      "list": true
    },
    "resources": {
      "list": true,
      "subscribe": false
    },
    "prompts": {
      "list": true
    }
  },
  "tools": [
    {
      "name": "get_services",
      "description": "Retrieve information about Fiorum's core services: Branding, Packaging Pre-Press Engineering, and Editorial Design.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "service": {
            "type": "string",
            "enum": ["branding", "packaging", "editorial", "all"],
            "default": "all"
          },
          "language": {
            "type": "string",
            "enum": ["es", "en"],
            "default": "es"
          }
        }
      }
    },
    {
      "name": "get_case_studies",
      "description": "List featured portfolio case studies such as Middle of the World Chocolate, Enerfrut, Saura Cine, and Dubai Conocoto.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "category": {
            "type": "string",
            "description": "Filter by category (e.g. branding, packaging, editorial)"
          }
        }
      }
    },
    {
      "name": "submit_project_inquiry",
      "description": "Submit a design project quote request or inquiry directly to Fiorum's creative and engineering team.",
      "inputSchema": {
        "type": "object",
        "required": ["name", "email", "service", "message"],
        "properties": {
          "name": { "type": "string" },
          "email": { "type": "string", "format": "email" },
          "company": { "type": "string" },
          "service": { "type": "string", "enum": ["branding", "packaging", "editorial", "other"] },
          "message": { "type": "string" },
          "language": { "type": "string", "enum": ["es", "en"], "default": "es" }
        }
      }
    }
  ],
  "resources": [
    {
      "uri": "https://fiorum.net/llms.txt",
      "name": "LLM Summary Documentation",
      "mimeType": "text/plain"
    },
    {
      "uri": "https://fiorum.net/llms-full.txt",
      "name": "Full Agency Context and Methodologies",
      "mimeType": "text/plain"
    },
    {
      "uri": "https://fiorum.net/openapi.json",
      "name": "OpenAPI Specification",
      "mimeType": "application/json"
    }
  ],
  "documentation": "https://fiorum.net/openapi.json"
}
