getQueue
Fetch and paginate the current song queue for a specific streamer using StreamerSongList MCP Server. Easily manage and view song requests with customizable limits and offsets.
Instructions
View current song queues with pagination support
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of songs to return (default: 50) | |
offset | No | Number of songs to skip for pagination (default: 0) | |
streamerName | Yes | The name of the streamer whose queue to fetch |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 50,
"description": "Maximum number of songs to return (default: 50)",
"type": "number"
},
"offset": {
"default": 0,
"description": "Number of songs to skip for pagination (default: 0)",
"type": "number"
},
"streamerName": {
"description": "The name of the streamer whose queue to fetch",
"type": "string"
}
},
"required": [
"streamerName"
],
"type": "object"
}