{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/MCPServerSignalV1", "title": "MCPServerSignalV1", "description": "Signal notifying the client that the MCP control plane config has changed.\n", "type": "object", "properties": { "type": { "type": "string", "enum": [ "mcp" ] }, "version": { "description": "The current version of the MCP control plane.", "type": "string" }, "offset": { "description": "The offset for the MCP signal.", "type": "string" } }, "example": { "type": "mcp", "version": "v1", "offset": "6" }, "additionalProperties": false, "required": [ "type", "version", "offset" ] }