Skip to main content
Glama

Call several Blackboard endpoints at once

bb_batch_request
Read-only

Batch up to 20 Blackboard read requests into one round trip to reduce overhead when gathering data across courses.

Instructions

Fans out up to 20 GET reads in a single round trip using Blackboard's own batch endpoint. Paths are version-relative, e.g. "v1/courses/_12345_1/groups". Much cheaper than repeated bb_raw_request calls when gathering the same data across many courses.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathsYesVersion-relative paths, e.g. ["v1/users/me", "v1/terms"].
maxCharsNoDefault 15000.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.1

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and openWorldHint=true. The description adds that it uses Blackboard's own batch endpoint and that it performs GET reads in a single round trip, which aligns with the annotations. It does not cover partial-failure behavior or rate limits, but the read-only safety is well covered by annotations and the description reinforces it without contradiction.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences with no filler. The core purpose is front-loaded, the example is embedded naturally, and the comparison to bb_raw_request is concise and useful.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a batch GET tool with complete schema and read-only annotations, the description covers the essential context: purpose, usage scenario, and path format. It does not describe the response format, but given there is no output schema and the tool is relatively straightforward, the missing information is not critical. It is adequately complete for an agent to select and invoke it correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% for both parameters, so the schema already documents paths and maxChars. The description adds a concrete example path ('v1/courses/_12345_1/groups') that illustrates the version-relative format, but this is minor value beyond the schema's own examples. Baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it fans out up to 20 GET reads in a single round trip using Blackboard's batch endpoint. It specifies the verb (GET) and the resource (batch endpoint), and distinguishes itself from the sibling bb_raw_request by emphasizing efficiency for repeated reads across courses.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It provides a clear use case: 'when gathering the same data across many courses' and explicitly contrasts with repeated bb_raw_request calls, noting it is cheaper. It does not explicitly state when NOT to use it (e.g., for non-GET operations), but the GET-only constraint is implied and the comparison gives strong guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.