Skip to main content
Glama

lookup_jurisdiction

Look up one US jurisdiction's insurance-AI regulatory posture: whether it adopted the NAIC model bulletin, runs its own framework, or has other AI-related insurance legislation, with citations, dates and status. Call this when asked what a specific state requires, whether a state adopted the NAIC AI model bulletin, or what AI insurance legislation a state has. Note: not adopting the bulletin does NOT mean a state is unregulated — check other_activity in the response.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
jurisdictionYesTwo-letter code or full name, e.g. 'CO' or 'Colorado'

TDQS

A4.5/5.0
Behavior4/5

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

With no annotations, the description carries the transparency burden. It includes a behavioral caveat: 'Note: not adopting the bulletin does NOT mean a state is unregulated — check other_activity in the response.' This clarifies interpretation of results. However, it does not explicitly state whether the operation is read-only or has side effects, though a lookup implies safety.

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 concise, using two sentences plus a brief note. It front-loads the purpose, lists specific data points returned, and adds a crucial caveat in a clear separate sentence. No redundant or vague wording.

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?

Given the tool's low complexity (single parameter, no output schema), the description fully covers what the tool does, what it returns (citations, dates, status), and includes an important interpretive note. It is complete for a lookup tool without needing an output schema.

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?

The schema already fully describes the parameter (two-letter code or full name, e.g., 'CO' or 'Colorado'), so coverage is 100%. The description adds only that it is a 'US jurisdiction,' which is implicit from the schema's state code example. It does not provide additional semantic details beyond the schema, so 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 the tool's function: 'Look up one US jurisdiction's insurance-AI regulatory posture' and enumerates specific aspects (adopted NAIC model bulletin, own framework, other legislation). It distinguishes from sibling tools like list_jurisdictions (which likely enumerates) and dataset_provenance (which likely provides source metadata).

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

Usage Guidelines5/5

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

The description explicitly specifies when to use the tool: 'Call this when asked what a specific state requires, whether a state adopted the NAIC AI model bulletin, or what AI insurance legislation a state has.' This provides clear, actionable conditions and implies it is not for listing all jurisdictions.

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