{
  "name": "ShineByGrace Manager",
  "description": "Manages cleaning jobs, customers, agents, and scheduling for ShineByGrace",
  "url": "https://shinebygrace.co.uk/api/mcp",
  "version": "1.0.0",
  "provider": {
    "organization": "ShineByGrace",
    "url": "https://shinebygrace.co.uk"
  },
  "capabilities": {
    "streaming": true,
    "pushNotifications": false
  },
  "skills": [
    {
      "id": "schedule_job",
      "name": "Schedule Job",
      "description": "Schedule a cleaning job for a customer",
      "tags": [
        "scheduling",
        "jobs"
      ]
    },
    {
      "id": "cancel_job",
      "name": "Cancel Job",
      "description": "Cancel a scheduled cleaning job",
      "tags": [
        "scheduling",
        "jobs"
      ]
    },
    {
      "id": "get_customer",
      "name": "Get Customer",
      "description": "Get customer details and job history",
      "tags": [
        "customers"
      ]
    },
    {
      "id": "list_availability",
      "name": "List Availability",
      "description": "Get available booking slots",
      "tags": [
        "scheduling"
      ]
    },
    {
      "id": "assign_agent",
      "name": "Assign Agent",
      "description": "Assign a cleaning agent to a customer",
      "tags": [
        "access",
        "agents"
      ]
    }
  ],
  "securitySchemes": [
    {
      "type": "bearer",
      "description": "Staff or customer-scoped bearer token from /api/auth/token or /api/customer/auth/tokens"
    }
  ],
  "defaultInputModes": [
    "application/json"
  ],
  "defaultOutputModes": [
    "application/json"
  ],
  "openApiSpec": "https://shinebygrace.co.uk/openapi.json"
}