Skip to main content
Glama
Rusty0508
by Rusty0508

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

No arguments

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": true
}
logging
{}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
extensions
{
  "io.modelcontextprotocol/ui": {}
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
geocode_placeA

Geocode a place name to coordinates and a bounding box via Nominatim.

find_places_nearbyA

Find OSM elements matching a tag within a radius of a point.

find_places_in_areaB

Find OSM elements matching a tag within a bounding box.

get_elementA

Fetch a single OSM element by type and id, with coordinates resolved via out center.

count_placesA

Count OSM elements matching a tag within a bounding box (cheaper than full geometry).

raw_overpass_queryA

Execute a raw Overpass QL query.

Advanced escape hatch for queries the other tools cannot express (custom filters, out geom;, statistics, etc). Length-validated; empty input is rejected before any network call is made.

list_common_tagsA

List common OSM tag keys and their popular values. Static reference, no network call.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4/5.0

Scored across 7 tools

Disambiguation5/5

Each tool targets a distinct operation: geocoding, spatial search by radius or bbox, single-element fetch, counting, raw querying, and tag reference. The two search tools are clearly differentiated by spatial constraint, and the counting tool explicitly avoids returning geometries.

Naming Consistency4/5

Most tool names follow a verb_noun pattern (e.g., geocode_place, find_places_nearby, get_element), but raw_overpass_query deviates from this pattern by using an adjective_noun construction. Overall, the naming is mostly consistent and easy to predict.

Tool Count5/5

With seven tools, the set is well-scoped for an Overpass API server: it covers common high-level operations plus a raw query escape hatch without unnecessary redundancy. This is within the ideal 3-15 tool range.

Completeness5/5

The tools cover the core workflow of geocoding, spatial querying, fetching specific elements, and counting. The raw_overpass_query tool ensures any unexpressed Overpass query is still possible, eliminating dead ends and making the surface functionally complete.

Maintenance

ActivitySlowing
ResponsivenessNo issues