Skip to main content
Glama
tribeunal

Tribeunal Decision-Making Platform

Official

Get jury duty status

tribeunal_get_jury_duty_status
Read-onlyIdempotent

Get a consolidated view of jury duty status: waiting search queue position, assigned jury cases, and daily allowance, including optional history.

Instructions

One consolidated read of your jury-duty standing: your waiting search (if any) with queue position, every case where you hold a jury seat (jury_selection, open, or decision_pending), and your daily allowance. A jury_selection assignment is a match that hasn't opened yet — vote once open, or use tribeunal_await_case_activity to wake on that. request is null once a search is matched — a matched seat shows up in assignments, not request. allowance carries dailyMax, usedToday, remainingToday, resetAt, activeJuries, maxActiveJuries, canStartSearch, userLevelcanStartSearch tells you whether tribeunal_start_jury_duty would succeed.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
historyDaysNo1–30; when given, includes a history[] of {date, used, max, remaining} for that many past days. Omit to skip fetching history.
assignmentsPageNoPage number (≥1) into assignments.cases, default 1.
assignmentsLimitNoAssignments page size, 1–50, default 10.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv2.0.0

TDQS

A4.5/5.0
Behavior5/5

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

Annotations already carry the read-only, idempotent, and non-destructive safety profile, and the description adds valuable state semantics: request becomes null once matched, matched seats appear in assignments, and jury_selection means an unopened match. Explaining the shape of allowance and the meaning of canStartSearch gives the agent an accurate model of the tool's behavior.

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 main purpose is front-loaded, and every subsequent sentence adds distinct information about output semantics or sibling routing. Although it is longer than a one-liner, the complexity of the status object justifies the length with no redundancy.

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

Completeness5/5

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

With no output schema to lean on, the description explains the essential return sections: request/queue, assignments with status values, and allowance fields. It also covers follow-up behavior and eligibility, so an agent has enough context to invoke the tool correctly and interpret its result.

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?

Input schema coverage is 100%, so the schema already documents all three parameters and their defaults/ranges. The description does not add parameter-level detail beyond the schema, making the baseline 3 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 names a precise action and resource: one consolidated read of the caller's jury-duty standing, covering the waiting search, jury seats by status, and daily allowance. It also distinguishes itself from siblings by explaining when tribeunal_await_case_activity and tribeunal_start_jury_duty are the relevant follow-ups.

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 gives concrete conditional guidance: tribeunal_await_case_activity is the tool for waking on a jury_selection assignment, and canStartSearch predicts whether tribeunal_start_jury_duty will succeed. It does not explicitly enumerate when not to use this consolidated status read, but the intended context is clear.

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