Skip to main content
Glama

Pinloft: Batch Geocoder — Address to Lat/Long + Census FIPS

Address to latitude/longitude (+ US county and FIPS)

geocode_address
Read-onlyIdempotent

Convert up to 5 street addresses to latitude/longitude with a cleaned, matched address and match confidence. US addresses also get state, county, tract, block group and block FIPS codes (US Census geocoder); include_districts adds congressional and state legislative districts, city, school district and metro area. Worldwide addresses use OpenStreetMap.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
countryNo"auto" (default), "US", or ISO-2 codes for non-US lookups
addressesYesAddresses, one per item, e.g. "1600 Pennsylvania Ave NW, Washington, DC 20500" or "10 Downing St, London". Up to 5.
include_districtsNoAdd districts for US matches

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint=false, so the safety profile is covered. The description adds valuable behavioral context: it returns a cleaned matched address and confidence, and explains the different backends (US Census vs OpenStreetMap) and optional district enrichment. This goes beyond the annotations and is transparent.

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?

Two sentences, but the second is long and packs multiple clauses (US Census details, include_districts, OSM). The core purpose is front-loaded in the first sentence. It is efficient but slightly dense; no wasted words, though the structure could be split for readability.

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?

With 3 parameters and no output schema, the description covers the primary behavior (geocoding, cleaning, confidence, FIPS, districts). It doesn't describe the exact return format or error handling, but for a forward-geocoding tool this is acceptable. It gives enough for an agent to call it correctly.

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?

Schema coverage is 100% (all three parameters have descriptions), so baseline is 3. The description adds meaning beyond the schema: it explains how the 'country' parameter affects output (US vs worldwide), what 'include_districts' adds, and provides concrete example formats. This extra context helps the agent choose parameter values effectively.

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 verb ('convert'), resource ('street addresses to latitude/longitude'), and the key outputs (cleaned address, confidence, FIPS codes, districts). It also differentiates US vs worldwide behavior, clearly distinguishing it from the sibling reverse_geocode.

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 explains what it does and that US addresses get extra data, but it never explicitly says when to use this tool versus the sibling reverse_geocode. It doesn't state when not to use it or mention alternatives, leaving the agent to infer from the name and description.

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.