{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "McpServerElicitationRequestResponse",
  "type": "object",
  "required": [
    "action"
  ],
  "properties": {
    "_meta": {
      "description": "Optional client metadata for form-mode action handling."
    },
    "action": {
      "$ref": "#/definitions/McpServerElicitationAction"
    },
    "content": {
      "description": "Structured user input for accepted elicitations, mirroring RMCP `CreateElicitationResult`.\n\nThis is nullable because decline/cancel responses have no content."
    }
  },
  "definitions": {
    "McpServerElicitationAction": {
      "type": "string",
      "enum": [
        "accept",
        "decline",
        "cancel"
      ]
    }
  }
}