get_broadcast
Retrieve a specific chess broadcast by its unique ID using the Lichess MCP server, enabling users to access and view detailed information about the broadcast.
Instructions
Get a broadcast by its ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
broadcastId | Yes | ID of the broadcast |
Input Schema (JSON Schema)
{
"properties": {
"broadcastId": {
"description": "ID of the broadcast",
"type": "string"
}
},
"required": [
"broadcastId"
],
"type": "object"
}