Skip to main content
Glama

list_jurisdictions

List US jurisdictions by regulatory posture. Use posture 'adopted_model_bulletin' for states that adopted the NAIC model bulletin, 'own_framework' for states running their own insurance-specific AI framework (CA, CO, NY, TX), or omit for all.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sinceNoISO date (YYYY-MM-DD). Only jurisdictions that acted on or after this date. Use for questions like 'which states adopted in 2025?'
untilNoISO date (YYYY-MM-DD), inclusive upper bound
postureNoadopted_model_bulletin = adopted the NAIC bulletin; own_framework = runs its own insurance-specific AI framework (CA, CO, NY, TX); no_model_bulletin = has not adopted it but has other tracked AI-related insurance activity. Omit for all.

TDQS

A3.8/5.0
Behavior2/5

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

With no annotations (readOnly, destructive, etc.), the description carries the full burden. It does not disclose side effects, whether the operation is read-only, authentication requirements, or rate limits. As a listing tool, it is implicitly read-only, but this is not stated, leaving behavioral transparency lacking.

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, concise and well-structured. It provides the core purpose and immediately explains the key parameter's values without fluff, making it efficient and readable.

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?

The description is complete for a simple listing tool: it explains the purpose, parameter usage, and even default behavior (omit for all). It does not describe the output format, but no output schema is provided, and for a list operation this is acceptable. It could mention sorting or pagination, but these are not critical, so it earns a 4.

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

Parameters4/5

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

The input schema already describes each parameter, but the description adds significant nuance for the posture parameter by explaining the meaning of each enum value (e.g., 'adopted_model_bulletin = adopted the NAIC bulletin'). This enriches the schema, though since and until are already clear. Coverage is high, and the added value justifies a score above the baseline.

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 the tool's purpose: 'List US jurisdictions by regulatory posture.' It specifies the verb (List), the resource (US jurisdictions), and the scope (by regulatory posture). It distinguishes from sibling tools by implying a list operation versus lookup or provenance.

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

Usage Guidelines3/5

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

The description provides usage guidance for the posture parameter (e.g., 'Use posture ... for states that adopted...'), but it does not explicitly contrast with sibling tools like lookup_jurisdiction or dataset_provenance. It lacks explicit when-to-use versus alternatives, so it is only somewhat useful.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.4/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: dataset_provenance provides metadata about the dataset itself, list_jurisdictions returns a filtered list of states, and lookup_jurisdiction returns details for a single state. There is no ambiguity between listing and looking up, and the provenance tool is obviously separate.

Naming Consistency4/5

Two tools follow the verb_noun pattern (list_jurisdictions, lookup_jurisdiction), but dataset_provenance deviates as a noun_compound. The naming is still readable and predictable, but the one deviation prevents a perfect score.

Tool Count5/5

With exactly 3 tools, the server is well-scoped for its purpose: a focused read-only data lookup service. Each tool serves a necessary function, and there is no bloat or triviality.

Completeness5/5

The tool set covers the full lifecycle for this domain: checking data provenance, listing all jurisdictions with filtering, and retrieving details for a specific jurisdiction. No obvious gaps exist for a read-only regulatory lookup service.

Resources