Skip to main content
Glama

check_territory

Whether a zip is in the deregulated Texas market, and which TDU serves it.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
zipYes

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4/5.0
Behavior4/5

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

With no annotations, the description carries the burden of conveying behavior. It discloses that the tool is a read-only-ish lookup returning two pieces of information (in-market status and serving TDU). It does not mention edge cases or error handling, but for a simple single-parameter lookup the behavior is reasonably 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?

A single sentence that front-loads the essential purpose without any filler. Every word earns its place, and the structure makes the tool's behavior immediately understandable.

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?

Given the tool's simplicity (one parameter, no output schema, no annotations), the description provides enough context for an agent to select and invoke it correctly: input is a zip, output is a yes/no plus TDU. It does not detail the return format or behavior for invalid zips, but the natural-language description is largely sufficient.

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 0%, so the description must compensate for the undefined 'zip' parameter. It does reference 'zip' but adds no format details (e.g., 5-digit vs ZIP+4, US-only, valid ranges). The parameter name is intuitive, but the description does not enrich it beyond the schema's string type.

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?

States a specific check: whether a zip is in the deregulated Texas market and which TDU serves it. This clearly distinguishes it from siblings like compare_plans, compare_this_house, and explain_plan, which address different domains. The resource (zip) and the two-part output are explicit.

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 intended usage is implied by the description: an agent would call this when given a zip and needing territory/market eligibility information. However, it does not explicitly state when to use it over the listed sibling tools or provide any exclusions or alternatives. No when-to-use guidance is given beyond the natural purpose.

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.2/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: check_territory verifies market eligibility, compare_plans and compare_this_house rank plans but differ by input (zip vs. address), and explain_plan provides detailed receipt for a single plan. The descriptions clarify when to use compare_this_house over compare_plans, eliminating ambiguity.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern using snake_case: check_territory, compare_plans, compare_this_house, explain_plan. The two compare tools share the same verb, and all names are descriptive and predictable.

Tool Count5/5

With 4 tools, the server is tightly scoped to the domain of Texas electricity plan comparison. Each tool serves a distinct step in the user workflow—eligibility check, comparison, address-specific comparison, and plan explanation—so the count feels well-balanced and not excessive.

Completeness5/5

The tool surface covers the full lifecycle required for plan comparison: check market eligibility, compare plans by zip or address, and get detailed cost breakdowns. There are no obvious dead ends—users can flow from territory check to plan ranking to plan details without missing operations. The server's purpose is fully realized.

Resources