{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://starwarsnamegenerator.com/mcp-schemas/generate_droid_name.request.json",
  "title": "GenerateDroidNameRequest",
  "description": "Request body for POST /.mcp/invoke-tool/generate_droid_name. Generate Star Wars droid designations by class: astromech (R2-D2 / BB-8 serials), protocol (C-3PO / K-2SO blocks), or battle (OOM-9 / IG-88 / HK-47 series).",
  "type": "object",
  "properties": {
    "droidClass": {
      "type": "string",
      "enum": [
        "astromech",
        "protocol",
        "battle"
      ],
      "description": "Droid class: astromech, protocol, or battle."
    },
    "count": {
      "description": "How many designations to generate (1-50). Default 6.",
      "type": "integer",
      "minimum": 1,
      "maximum": 50
    }
  },
  "required": [
    "droidClass"
  ]
}
