tv_channels
Pack: lichess · Endpoint: https://gateway.pipeworx.io/lichess/mcp
Currently-featured TV games per variant.
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/lichess/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"tv_channels","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('tv_channels', {});
Response shape
Full JSON Schema
{
"type": "object",
"description": "Featured TV games per variant",
"additionalProperties": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Game ID"
},
"fen": {
"type": "string",
"description": "Current position FEN"
},
"lastMove": {
"type": "string",
"description": "Last move in UCI notation"
},
"players": {
"type": "array",
"description": "Players in the game",
"items": {
"type": "object"
}
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"lichess": {
"url": "https://gateway.pipeworx.io/lichess/mcp"
}
}
}
See Getting Started for client-specific install steps.