Skip to main content
Glama

plate_lookup

Look up every OPEN parking and camera violation for a New York plate, live from the City of New York's public Open Data API. Returns each ticket (violation, date, amounts, judgment status), the totals owed, an estimated judgment outlook per ticket, the boot-risk position against the city's $350 judgment-debt threshold, and the citywide dismissal rate for each ticket's violation type. Privacy: the plate is sent to the City's API and back inside this one request — never stored or logged by this server.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
plateYesLicense plate, letters and digits only — e.g. 'ABC1234'.
stateYesTwo-letter registration state, e.g. 'NY', 'NJ'.
license_typeNoOptional plate class code (PAS, COM, OMT, SRF, OMS, APP, TRC, TRL, MOT). Omit to search all types — most drivers should omit it.

TDQS

A3.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 burden and does meaningful work: it states the data is live, limited to OPEN violations, and never stored or logged by the server. It could add authentication/rate-limit details, but the privacy and live-data traits are valuable beyond the tool name.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The purpose is front-loaded in the first sentence, the return payload is summarized in one sentence, and privacy is one final sentence. It's dense but not padded; every sentence contributes.

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 there is no output schema, the description compensates by enumerating the return fields (ticket details, totals owed, judgment outlook, boot-risk threshold, dismissal rate). It doesn't spell out error handling or exact response structure, but an agent has enough to understand what comes back.

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 100%, so the schema already explains plate, state, and license_type with examples and the advice to omit license_type. The free-text description adds little parameter detail beyond saying the plate is a New York plate, which is already implied.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The opening sentence names a specific action (look up every OPEN parking and camera violation) and resource (City of New York's public Open Data API). It is clear enough to distinguish from sibling tools like borough_odds or deadline_calculator, though it never explicitly names an alternative such as violation_dismissal_rates.

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

Usage Guidelines2/5

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

The description gives no when-to-use guidance or exclusions versus siblings. It implies usefulness for checking current tickets and boot risk, but it never tells the agent when to prefer this tool over violation_dismissal_rates or other lookup tools.

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

A3.9/5.0
Disambiguation3/5

Several tools overlap in subject matter: borough_odds, violation_dismissal_rates, and plate_lookup all touch NYC hearing outcomes, while operator_route_lookup and popla_outcomes both expose POPLA operator records. The descriptions are detailed enough to separate them on close reading, but an agent could easily select the wrong one when asking for odds or appeal outcomes.

Naming Consistency3/5

The names are uniformly lowercase snake_case and readable, but the pattern is mixed: get_mtd_answer, list_doors, and search_mtd_answers use a verb_noun form, while borough_odds, popla_outcomes, and violation_dismissal_rates are noun phrases, and plate_lookup/operator_route_lookup use noun_lookup compounds. There is no single consistent naming convention across the set.

Tool Count5/5

Nine tools is within the ideal range and each tool represents a distinct, substantive data product or query endpoint. For a gateway spanning multiple domains, this is well-scoped and not bloated.

Completeness4/5

The main query surfaces are covered: NYC parking has plate, borough, and violation-type views; UK parking has operator routing, deadline calculation, and POPLA outcomes; and MTD has search plus full-answer retrieval. Minor gaps exist, such as IAS appeal outcomes and a way to list all MTD answers without searching, but these are workable rather than blocking.

Resources