Skip to main content
Glama
HackerFund

Glendale GIS MCP Server

by HackerFund

seismic_zones

Read-onlyIdempotent

Check whether a Glendale address or coordinates fall in California earthquake hazard zones: Alquist-Priolo fault rupture, liquefaction, or earthquake-induced landslide.

Instructions

California Geological Survey earthquake zones at a location: Alquist-Priolo fault rupture, liquefaction and earthquake-induced landslide. Being inside a zone is the hazard signal; the attributes only describe the map (quadrangle, release date, report links). Outside a zone does not mean no earthquake hazard: all of Glendale can shake.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
locationYesWhere to look: {"address": "613 E Broadway"} for a street address in Glendale, or {"lat": 34.1466, "lon": -118.2483}. Coordinates skip geocoding.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
faultYes
locationYes
landslideYes
liquefactionYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.1/5.0
Behavior5/5

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

The description adds meaningful behavioral context beyond the annotations: being inside a zone is the hazard signal, attributes only describe the map, and absence from a zone does not guarantee safety. This directly supports the openWorldHint and helps the agent avoid misinterpreting negative results.

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 three sentences with no filler. It front-loads the core resource and zone types, then adds two crucial interpretive caveats that prevent misuse of the result. Every sentence earns its place.

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 output schema exists and annotations already convey the read-only, idempotent, open-world nature of the call, the description supplies the remaining decision-critical context: what constitutes a hazard and what absence means. Nothing needed to call it correctly is missing.

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%, and the input schema already documents address versus lat/lon usage, including that coordinates skip geocoding. The description adds no parameter-level detail beyond 'at a location,' so the baseline score of 3 is appropriate.

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 description identifies the specific resource ('California Geological Survey earthquake zones') and enumerates the zone types: Alquist-Priolo fault rupture, liquefaction, and earthquake-induced landslide. It implies a location-based lookup rather than an explicit verb, but the intent is clear and distinguishable from the non-seismic sibling hazard tools.

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 implies the tool is used to check earthquake-related zones at a location, but it does not explicitly say when to choose this over alternatives like hazards_at_location, wildfire_zone, or flood_zone. No when-not-to-use guidance is provided beyond the interpretive caveat about zones.

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