[batch]
Runs independent read-only TGlider tool calls in request order.
Agent workflows often need several independent facts before the next decision.
Batching reduces round trips and keeps related semantic evidence together.
Try it locally in the TGlider playground
| Name | Type | Required | Description |
|---|---|---|---|
| operations | json | Yes | Array of batch operations with tool, optional id, and args. |
Read status and diagnostics together
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "batch",
"arguments": {
"operations": [
{
"tool": "server_status",
"args": {}
},
{
"tool": "get_diagnostics",
"args": {
"severity": "error"
}
}
]
}
}
}Returns ordered per-operation payloads with success/error status.