Skip to main content
Glama

get_docket

Retrieve a specific federal docket's full details from Regulations.gov using its exact ID, including title, agency, type, abstract, keywords, RIN, and last modified date.

Instructions

Fetch one docket's full detail from Regulations.gov by its exact ID.

Returns id, title, agency_id, docket_type, abstract (the docket's own summary of what the rulemaking does), keywords, rin (Regulation Identifier Number), and last_modified. Raises a not-found error for an ID that does not exist; get IDs from search_dockets rather than guessing them.

Args: docket_id: Exact docket ID, e.g. "BIS-2024-0047".

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
docket_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.6/5.0
Behavior4/5

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

With no annotations provided, the description carries the behavioral disclosure burden. It does so well by listing the exact return fields and stating that a non-existent ID raises a not-found error. It omits minor details like authentication or rate limits, but for a single-fetch tool this is adequately transparent.

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 well structured: a front-loaded purpose sentence, a concise list of return fields and error behavior, then the single argument with an example. There is no filler and every sentence contributes actionable information.

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?

For a one-parameter read-only tool with no output schema and no annotations, this description is complete. It covers what the tool returns, the error case, where to get valid IDs, and what the argument should look like. Nothing essential is missing for an agent to call it correctly.

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

Parameters5/5

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

The input schema provides only the parameter name with no description, so the description must compensate entirely. It does: it defines docket_id as an exact ID, gives a concrete example ('BIS-2024-0047'), and tells the agent to obtain IDs from search_dockets rather than guessing. This is exemplary parameter guidance.

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 uses a specific verb ('Fetch'), a clear resource ('one docket's full detail'), and a source ('Regulations.gov'). It also distinguishes itself from search_dockets by requiring an exact ID and explicitly points to that sibling for finding IDs, making the tool's role unambiguous.

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?

The description gives clear usage context: use this tool when you have an exact docket ID and need full detail, and it explicitly tells the agent to get IDs from search_dockets rather than guessing. It does not explicitly discuss when to prefer list_documents, so it misses a full when-not comparison.

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

Install Server

Other Tools