batch

[batch]

Runs independent read-only TGlider tool calls in request order.

Why this tool exists

Agent workflows often need several independent facts before the next decision.

How it helps the agent

Batching reduces round trips and keeps related semantic evidence together.

Try it locally in the TGlider playground

Parameters

NameTypeRequiredDescription
operationsjsonYesArray of batch operations with tool, optional id, and args.

Examples

Read status and diagnostics together

Request
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "batch",
    "arguments": {
      "operations": [
        {
          "tool": "server_status",
          "args": {}
        },
        {
          "tool": "get_diagnostics",
          "args": {
            "severity": "error"
          }
        }
      ]
    }
  }
}

Response Notes

Returns ordered per-operation payloads with success/error status.

↑/↓ NavigateEnter OpenSpace Expand