{
  "$schema": "https://raw.githubusercontent.com/modelcontextprotocol/modelcontextprotocol/main/schema/server-card.json",
  "serverInfo": {
    "name": "biggrow-studio-mcp",
    "title": "BigGrow Studio MCP Server",
    "version": "1.0.0",
    "description": "MCP Server providing AI agents access to BigGrow Studio & Labs design, development services, and project consultations."
  },
  "transport": {
    "type": "sse",
    "endpoint": "https://biggrowstudio.com/api/mcp/sse"
  },
  "capabilities": {
    "tools": [
      {
        "name": "get_services_catalog",
        "description": "Retrieves the full catalog of design, branding, web development, app engineering, and AI solutions with detailed scope descriptions.",
        "inputSchema": {
          "type": "object",
          "properties": {
            "category": {
              "type": "string",
              "enum": ["all", "web", "branding", "apps", "ai", "social", "consulting"],
              "description": "Category of services to filter by"
            },
            "language": {
              "type": "string",
              "enum": ["en", "es"],
              "description": "Response language"
            }
          }
        }
      },
      {
        "name": "estimate_project",
        "description": "Generates a preliminary project scope and roadmap recommendation based on project goals, industry, and timeline.",
        "inputSchema": {
          "type": "object",
          "properties": {
            "service_type": { "type": "string", "description": "Type of service required (e.g. web, branding, custom_app)" },
            "industry": { "type": "string", "description": "Client industry or niche" },
            "estimated_timeline": { "type": "string", "description": "Target delivery timeline in weeks" }
          },
          "required": ["service_type"]
        }
      }
    ]
  }
}
