Skip to main content
Glama

Close API

Server Details

Walk, bike, and transit travel times from every US census block to nearby amenities.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.

Tool Definition Quality

Score is being calculated. Check back soon.

Available Tools

8 tools
blocks_in_areaInspect

Per-block travel times for every census block in an area (metered: 1 token per returned row). Give place_geoid (from find_place) for a whole city, or center {lat, lon} + radius_m. Rows carry a numeric mode_id.

ParametersJSON Schema
NameRequiredDescriptionDefault
latNoCircle centre latitude (with lon + radius_m).
lonNoCircle centre longitude.
modeNowalk, bike, or transit.
typeNoDestination type id (see get_catalog).
limitNoMax rows (first page).
radius_mNoCircle radius in metres (<=28000).
place_geoidNoCensus place GEOID (a whole city/town).
find_placeInspect

Look up a US city or town by name (free, no key). Returns matches with their census place GEOID and centre point (lon/lat). The entry point: feed a GEOID to blocks_in_area, or a centre to walkability_summary.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax matches (1-20).
queryYesCity or town name, e.g. 'Providence'.
get_catalogInspect

List the travel modes and the destination-type taxonomy (free, no key). Use it to resolve type names to the numeric ids the other tools take. Modes are walk, bike, transit — there is no drive mode.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

isochroneInspect

The area reachable from a location within a time budget, as GeoJSON contours (metered: 10 tokens per contour). Give block_geoid or lat+lon. Defaults to a single 30-minute contour; ask for more only when needed (bodies can be large).

ParametersJSON Schema
NameRequiredDescriptionDefault
latNo
lonNo
modeNowalk, bike, or transit.walk
minutesNoA single threshold (1-60).
contoursNoUp to four ascending thresholds, instead of minutes.
directionNo'from' the origin (default) or 'to' it.
block_geoidNo
nearby_poisAInspect

Nearby points of interest and the travel time to each, from a location (metered: 1 token per returned row). Give block_geoid or lat+lon. Keep limit small to control spend and context size.

ParametersJSON Schema
NameRequiredDescriptionDefault
latNo
lonNo
modeNowalk, bike, or transit.
typeNoDestination type id (see get_catalog).
limitNoMax rows (first page).
block_geoidNo
max_minutesNoUpper bound on travel time (<=30).
Behavior3/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It reveals that the tool is metered (1 token per row), implying cost and pagination. However, it does not disclose authorization requirements, error handling, side effects, or whether the call is read-only. The cost hint is helpful but incomplete.

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 extremely concise: three short sentences deliver purpose, cost warning, and key parameter guidance. Every phrase earns its place with no redundancy or fluff. It is front-loaded with the core function.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has 7 parameters, no output schema, and no annotations, the description covers the basics but lacks depth. It mentions location inputs and limit, but does not explain the type parameter reliance on get_catalog, the travel time modes, or the response format. For a tool of moderate complexity, it is adequate but not comprehensive.

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 only 57% (4 of 7 parameters have descriptions). The description adds critical meaning by clarifying the mutual exclusivity of block_geoid vs lat+lon, which is not evident from the schema. It also reinforces the purpose of limit to control spend. However, it does not elaborate on mode, type, or max_minutes beyond the schema.

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 clearly states the tool returns nearby points of interest with travel times from a location. It identifies the key resources (POIs and travel time) and hints at the use of coordinates or block_geoid. However, it does not explicitly differentiate from sibling tools like isochrone or blocks_in_area, which may also deal with geographic data.

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 advises to 'Give block_geoid or lat+lon' and to 'Keep limit small to control spend and context size', which provides some usage context. However, it does not specify when to prefer this tool over alternatives like find_place or isochrone, nor does it mention prerequisite calls like get_catalog for type ids.

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

redeem_codeInspect

Complete sign-up with the six-digit code the user received, and return a new API key (shown once). Call request_sign_in first. The key grants 5,000 free tokens; store it and pass it as the Authorization bearer on future calls.

ParametersJSON Schema
NameRequiredDescriptionDefault
codeYesThe six-digit code from the email.
emailYes
labelNoOptional label for the key.mcp-agent
request_sign_inAInspect

Start free sign-up for the user: email them a six-digit code. The user must read the code from their own inbox and give it to you, then call redeem_code. This is how an agent gets the user an API key (5,000 free tokens, no card).

ParametersJSON Schema
NameRequiredDescriptionDefault
emailYesThe user's email address.
Behavior4/5

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

No annotations provided, so description carries full burden. It discloses the side effect (emailing a code), the required user action, and the next step. It also mentions the ultimate goal (get API key with free tokens). Minor omission: no mention of error cases or duplicate emails.

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?

Two sentences with no wasted words. Front-loaded with action and purpose. Every sentence adds value.

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 low complexity (1 parameter, no output schema), description is complete: it explains the tool's role, the required user input, and the subsequent step. No gaps.

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?

Input schema covers 100% of parameters with description 'The user's email address.' Description adds no further semantics 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?

Description clearly states the tool's purpose: 'Start free sign-up for the user: email them a six-digit code.' It specifies the verb ('start'), resource ('sign-up'), and mechanism ('email code'), distinguishing it from sibling tools like redeem_code which is the next step.

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?

Explicit usage guidance: 'The user must read the code from their own inbox and give it to you, then call redeem_code.' This tells when to use (first step of sign-up) and what follows, differentiating from siblings.

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

walkability_summaryInspect

Fastest travel time from a location to each destination category, by mode (metered: ~1 token per returned row). Give either block_geoid or lat+lon. A missing category means it is not reachable within 30 minutes.

ParametersJSON Schema
NameRequiredDescriptionDefault
latNo
lonNo
modeNowalk, bike, or transit. Omit for all three.
block_geoidNo15-digit census block GEOID.

Discussions

No comments yet. Be the first to start the discussion!

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources