{"name":"io.github.cyanheads/openstreetmap-mcp-server","slug":"cyanheads-openstreetmap-mcp-server","title":null,"description":"Geocode, reverse geocode, and run Overpass spatial queries on OpenStreetMap data.","url":"https://mcp.market/server/cyanheads-openstreetmap-mcp-server","grade":"C","score":68,"certified":false,"status":"active","category":"other","tags":[],"transport":"mixed","callable_via_gateway":true,"default_price_micros":0,"repository":"https://github.com/cyanheads/openstreetmap-mcp-server","website":null,"version":"0.5.1","remotes":[{"type":"streamable-http","url":"https://openstreetmap.caseyjhand.com/mcp"}],"packages":[{"registryType":"npm","registryBaseUrl":"https://registry.npmjs.org","identifier":"@cyanheads/openstreetmap-mcp-server","version":"0.5.1","runtimeHint":"bun","transport":{"type":"stdio"},"packageArguments":[{"value":"run","type":"positional"},{"value":"start:stdio","type":"positional"}],"environmentVariables":[{"description":"Nominatim API base URL. Override to use a private or mirror instance.","format":"string","default":"https://nominatim.openstreetmap.org","name":"OSM_NOMINATIM_BASE_URL"},{"description":"User-Agent sent to Nominatim and Overpass. Required by usage policy.","format":"string","default":"openstreetmap-mcp-server/0.5.1","name":"OSM_USER_AGENT"},{"description":"Overpass API endpoint URL. When set, pins every query to this one endpoint and disables mirror failover. Leave unset to use OSM_OVERPASS_ENDPOINTS.","format":"string","name":"OSM_OVERPASS_BASE_URL"},{"description":"Comma-separated ordered list of Overpass endpoints. A transient failure advances to the next entry within the same tool call; a single entry means no failover. Verify a mirror's usage policy, data coverage, and freshness before adding it. Ignored when OSM_OVERPASS_BASE_URL is set.","format":"string","default":"https://overpass-api.de/api/interpreter","name":"OSM_OVERPASS_ENDPOINTS"},{"description":"Maximum Overpass queries submitted at once. Match the slot budget the endpoint advertises at /api/status.","format":"number","default":"2","name":"OSM_OVERPASS_MAX_CONCURRENCY"},{"description":"Sets the minimum log level for output (e.g., 'debug', 'info', 'warn').","format":"string","default":"info","name":"MCP_LOG_LEVEL"}]},{"registryType":"npm","registryBaseUrl":"https://registry.npmjs.org","identifier":"@cyanheads/openstreetmap-mcp-server","version":"0.5.1","runtimeHint":"bun","transport":{"type":"streamable-http","url":"http://localhost:3010/mcp"},"packageArguments":[{"value":"run","type":"positional"},{"value":"start:http","type":"positional"}],"environmentVariables":[{"description":"The hostname for the HTTP server.","format":"string","default":"127.0.0.1","name":"MCP_HTTP_HOST"},{"description":"The port to run the HTTP server on.","format":"string","default":"3010","name":"MCP_HTTP_PORT"},{"description":"The endpoint path for the MCP server.","format":"string","default":"/mcp","name":"MCP_HTTP_ENDPOINT_PATH"},{"description":"Public origin override for deployments behind a TLS-terminating reverse proxy (e.g. https://mcp.example.com).","format":"string","name":"MCP_PUBLIC_URL"},{"description":"Authentication mode to use: 'none', 'jwt', or 'oauth'.","format":"string","default":"none","name":"MCP_AUTH_MODE"},{"description":"Nominatim API base URL. Override to use a private or mirror instance.","format":"string","default":"https://nominatim.openstreetmap.org","name":"OSM_NOMINATIM_BASE_URL"},{"description":"User-Agent sent to Nominatim and Overpass. Required by usage policy.","format":"string","default":"openstreetmap-mcp-server/0.5.1","name":"OSM_USER_AGENT"},{"description":"Overpass API endpoint URL. When set, pins every query to this one endpoint and disables mirror failover. Leave unset to use OSM_OVERPASS_ENDPOINTS.","format":"string","name":"OSM_OVERPASS_BASE_URL"},{"description":"Comma-separated ordered list of Overpass endpoints. A transient failure advances to the next entry within the same tool call; a single entry means no failover. Verify a mirror's usage policy, data coverage, and freshness before adding it. Ignored when OSM_OVERPASS_BASE_URL is set.","format":"string","default":"https://overpass-api.de/api/interpreter","name":"OSM_OVERPASS_ENDPOINTS"},{"description":"Maximum Overpass queries submitted at once. Match the slot budget the endpoint advertises at /api/status.","format":"number","default":"2","name":"OSM_OVERPASS_MAX_CONCURRENCY"},{"description":"Sets the minimum log level for output (e.g., 'debug', 'info', 'warn').","format":"string","default":"info","name":"MCP_LOG_LEVEL"}]}],"tools":[{"name":"openstreetmap_lookup_objects","description":"Fetch the Nominatim address record for up to 50 known OSM objects by ID, each prefixed N (node), W (way), or R (relation), e.g. \"N240109189\". Use it for IDs already in hand from openstreetmap_query_nearby or openstreetmap_query_bbox; it returns only objects named in osm_ids, listing any that resolve to nothing under not_found, and cannot select by tag, so discover objects with those tools or openstreetmap_query_raw first.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"osm_ids":{"minItems":1,"maxItems":50,"type":"array","items":{"type":"string"},"description":"OSM IDs to look up, each prefixed with N (node), W (way), or R (relation). Always an array, including for a single ID: [\"N240109189\"], [\"W50637691\", \"R146656\"]. Up to 50 IDs per call."},"extratags":{"default":false,"description":"Include each looked-up object's extra OSM tags — contact and metadata (phone, website, opening_hours, wikidata) and physical attributes (surface, tracktype, sac_scale, ele, access). An absent tag describes that object, not OpenStreetMap.","type":"boolean"},"language":{"description":"Preferred language for names (BCP 47 code).","type":"string"}},"required":["osm_ids"],"$schema":"https://json-schema.org/draft/2020-12/schema","additionalProperties":false}},{"name":"openstreetmap_query_bbox","description":"Find OSM features inside an area via the Overpass API, for surveys of everything in a region (openstreetmap_query_nearby covers proximity to a point). Scope with the four corner fields south, west, north, east, or with within and a single OSM boundary ref such as a city relation or a park way, which searches the boundary polygon itself instead of an overcovering box; never both. Filter with amenity, or with tag_key plus an optional tag_value, ANDing up to five more filters; every feature returns with its full OSM tag set (no extratags flag here).","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"within":{"description":"OSM boundary to search inside, as one ref: R plus a relation id (\"R237385\", Seattle) or W plus a closed-way id (\"W13800188\", a park), case-insensitive. Take it from osm_type plus osm_id on openstreetmap_search_places, openstreetmap_reverse_geocode, or openstreetmap_lookup_objects. The alternative to the four corner fields, never both. A node ref is rejected: a node is never an area. A ref that maps to no Overpass area returns an empty page whose notice names the cause.","type":"string","pattern":"^[RWrw]\\d+$"},"south":{"description":"Southern boundary latitude (minimum latitude). One of four corner fields: supply all four, or use within instead.","type":"number","minimum":-90,"maximum":90},"west":{"description":"Western boundary longitude (minimum longitude). A west greater than east is valid, not an error: Overpass reads it as an antimeridian-crossing box and returns the union of west..180 and -180..east.","type":"number","minimum":-180,"maximum":180},"north":{"description":"Northern boundary latitude (maximum latitude).","type":"number","minimum":-90,"maximum":90},"east":{"description":"Eastern boundary longitude (maximum longitude). A value below west describes an antimeridian crossing rather than an inverted box.","type":"number","minimum":-180,"maximum":180},"amenity":{"description":"OSM amenity tag value shortcut (e.g. \"cafe\", \"bench\", \"hospital\"). Exactly one primary mode is required: this or tag_key, never both.","type":"string"},"tag_key":{"description":"Primary OSM tag key (e.g. \"leisure\", \"shop\", \"natural\"); omit tag_value to match any feature carrying the key, or supply it for exact equality. The alternative to amenity, never both. Additional filters are ANDed with this tag.","type":"string"},"tag_value":{"description":"Literal value paired with tag_key for exact equality (e.g., \"park\", \"supermarket\"); omit for key existence. Explicit empty or whitespace-only values are invalid. Keys and values are trimmed; blank unused fields are ignored in amenity mode.","type":"string"},"filters":{"description":"Up to five additional filters, ANDed with the required primary amenity or tag_key filter in input order. Omitted or [] adds no conditions. Keys must be unique after trimming; keys and values must not contain Overpass QL metacharacters (\" \\ [ ] ; ( )).","maxItems":5,"type":"array","items":{"type":"object","properties":{"key":{"type":"string","description":"Literal OSM tag key. Trimmed and nonblank; must be unique across the primary tag and all filters."},"value":{"description":"Literal exact-match value. Omit for key existence; an explicitly blank value is invalid. Trimmed before matching.","type":"string"}},"required":["key"],"additionalProperties":false,"description":"One additional literal equality or key-existence filter."}},"element_types":{"default":["node","way"],"description":"OSM element types to search, at least one. Ways cover most buildings and areas; nodes cover most standalone POIs. Add \"relation\" for complex structures. Omit the field to search nodes and ways; an empty array is rejected because it can only match nothing.","minItems":1,"type":"array","items":{"type":"string","enum":["node","way","relation"]}},"limit":{"default":20,"description":"Maximum results to return. Applied after the Overpass query — if the area has more features, they are truncated.","type":"integer","minimum":1,"maximum":500},"offset":{"default":0,"description":"Number of matching features to skip before applying limit, for paging through a large result set. The full match set is fetched and cached ~10 minutes keyed by the query, so re-paging at a new offset is deterministic and costs no extra upstream request. Pass the nextOffset value from a prior truncated response.","type":"integer","minimum":0,"maximum":9007199254740991},"timeout_seconds":{"default":25,"description":"Overpass query timeout in seconds. Increase for large bounding boxes or dense areas.","type":"integer","minimum":5,"maximum":60}},"$schema":"https://json-schema.org/draft/2020-12/schema","additionalProperties":false,"anyOf":[{"type":"object","required":["south","west","north","east","amenity"]},{"type":"object","required":["south","west","north","east","tag_key"]},{"type":"object","required":["within","amenity"]},{"type":"object","required":["within","tag_key"]}]}},{"name":"openstreetmap_query_nearby","description":"Find OSM features within a radius of a point via the Overpass API, the tool for \"what is near X?\" questions. Filter with amenity, or with tag_key plus an optional tag_value, ANDing up to five more filters; every feature returns with its full OSM tag set (no extratags flag here), sorted nearest-first by distance_meters, with nodes covering standalone POIs and ways covering buildings and areas.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"lat":{"type":"number","minimum":-90,"maximum":90,"description":"Center latitude in WGS84 decimal degrees."},"lon":{"type":"number","minimum":-180,"maximum":180,"description":"Center longitude in WGS84 decimal degrees."},"radius_meters":{"default":1000,"description":"Search radius in meters. Max 50,000m (50km). Keep under 5,000m for dense urban POI queries to avoid slow responses.","type":"number","exclusiveMinimum":0,"maximum":50000},"amenity":{"description":"OSM amenity tag value (e.g. \"hospital\", \"pharmacy\", \"restaurant\", \"atm\"), shortcut for tag_key=\"amenity\". Exactly one primary mode is required: this or tag_key, never both.","type":"string"},"tag_key":{"description":"Primary OSM tag key (e.g. \"leisure\", \"shop\", \"highway\"); omit tag_value to match any feature carrying the key, or supply it for exact equality. The alternative to amenity, never both. Additional filters are ANDed with this tag.","type":"string"},"tag_value":{"description":"Literal value paired with tag_key for exact equality (e.g., \"park\", \"supermarket\"); omit for key existence. Explicit empty or whitespace-only values are invalid. Keys and values are trimmed; blank unused fields are ignored in amenity mode.","type":"string"},"filters":{"description":"Up to five additional filters, ANDed with the required primary amenity or tag_key filter in input order. Omitted or [] adds no conditions. Keys must be unique after trimming; keys and values must not contain Overpass QL metacharacters (\" \\ [ ] ; ( )).","maxItems":5,"type":"array","items":{"type":"object","properties":{"key":{"type":"string","description":"Literal OSM tag key. Trimmed and nonblank; must be unique across the primary tag and all filters."},"value":{"description":"Literal exact-match value. Omit for key existence; an explicitly blank value is invalid. Trimmed before matching.","type":"string"}},"required":["key"],"additionalProperties":false,"description":"One additional literal equality or key-existence filter."}},"element_types":{"default":["node","way"],"description":"OSM element types to search, at least one. Ways cover most buildings and areas; nodes cover most standalone POIs. Add \"relation\" for complex structures like large campuses. Omit the field to search nodes and ways; an empty array is rejected because it can only match nothing.","minItems":1,"type":"array","items":{"type":"string","enum":["node","way","relation"]}},"limit":{"default":20,"description":"Maximum results to return. Applied after the Overpass query — if the area has more features, they are truncated.","type":"integer","minimum":1,"maximum":500},"offset":{"default":0,"description":"Number of matching features to skip before applying limit, for paging through a large result set. Features are distance-sorted before paging, so higher offsets return progressively farther matches; the full set is cached ~10 minutes so re-paging costs no extra upstream request. Pass the nextOffset value from a prior truncated response.","type":"integer","minimum":0,"maximum":9007199254740991},"timeout_seconds":{"default":25,"description":"Overpass query timeout in seconds. Increase for large radius or dense areas.","type":"integer","minimum":5,"maximum":60}},"required":["lat","lon"],"$schema":"https://json-schema.org/draft/2020-12/schema","additionalProperties":false,"anyOf":[{"type":"object","required":["amenity"]},{"type":"object","required":["tag_key"]}]}},{"name":"openstreetmap_query_raw","description":"Run an arbitrary Overpass QL query for anything the convenience tools cannot express: multi-type or union queries, relation membership, historical queries, regex tag matching. The query must include [out:json], e.g. \"[out:json][timeout:15];node[\\\"natural\\\"=\\\"peak\\\"](47.5,-122.5,47.7,-122.2);out body;\"; scope to an OSM boundary with rel(<id>);map_to_area->.a; or way(<id>);map_to_area->.a; then (area.a) on each statement (the 2400000000 way-area offset is gone since Overpass 0.7.57; openstreetmap_query_bbox takes the same scope as within, without QL). The response is one page: page with limit and offset, read totalFound and truncated for the whole match, and an element over max_element_bytes arrives with its members, nodes or geometry array withheld whole and withheldNotice saying how to fetch it back. For plain \"near X\" or \"in this area\" questions use openstreetmap_query_nearby or openstreetmap_query_bbox.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"query":{"type":"string","description":"Overpass QL query string. Must include [out:json]. The server sets the endpoint and User-Agent; do not include those. Example: \"[out:json][timeout:15];node[\\\"natural\\\"=\\\"peak\\\"](47.5,-122.5,47.7,-122.2);out body;\""},"limit":{"default":20,"description":"Maximum elements to return. Applied after the Overpass query — if the query matched more, they are truncated.","type":"integer","minimum":1,"maximum":500},"offset":{"default":0,"description":"Elements to skip before applying limit, for paging a large result set. The full match set is cached ~10 minutes keyed by the query, so re-paging at a new offset is deterministic and costs no extra request; a result over 100000 elements is served uncached, so paging that far re-queries and depends on the endpoint returning the same order. Pass the nextOffset from a prior truncated response.","type":"integer","minimum":0,"maximum":9007199254740991},"max_element_bytes":{"default":20000,"description":"Serialized-byte budget for one element, in UTF-8 bytes, applied per element after limit and offset — the dimension limit cannot bound, a single relation or geometry-heavy way. An over-budget element keeps every scalar and its tags but has its members, nodes and geometry arrays withheld whole, never truncated to a prefix, and lists each under withheld_keys with its item count and byte size; withheldElements and withheldNotice then give the offset and raised budget that fetch it back whole in one more call. That disclosure is not counted against the budget, so a bounded element runs ~60 bytes per withheld key above it.","type":"integer","minimum":1000,"maximum":10000000},"timeout_seconds":{"default":30,"description":"How long Overpass may spend on the query. A [timeout:N] directive in the query string wins over this. The client waits the full value rather than cutting a long query off early, but the endpoint enforces its own budget and may answer HTTP 504 first.","type":"integer","minimum":5,"maximum":180}},"required":["query"],"$schema":"https://json-schema.org/draft/2020-12/schema","additionalProperties":false}},{"name":"openstreetmap_reverse_geocode","description":"Convert a latitude/longitude pair to the nearest address or named place via Nominatim. The result is the closest indexed OSM object at the requested zoom (18 building, 10 city), which in dense areas can be a neighbouring feature rather than the one containing the coordinate; proximity and layer pick it, never an OSM attribute tag, so find features by tag with openstreetmap_query_nearby, openstreetmap_query_bbox, or openstreetmap_query_raw.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"lat":{"type":"number","minimum":-90,"maximum":90,"description":"Latitude in WGS84 decimal degrees."},"lon":{"type":"number","minimum":-180,"maximum":180,"description":"Longitude in WGS84 decimal degrees."},"zoom":{"default":18,"description":"Address detail level, roughly corresponding to map zoom. 18=building, 16=street, 14=neighbourhood, 12=town, 10=city, 8=county, 5=state, 3=country.","type":"integer","minimum":3,"maximum":18},"layer":{"description":"Restrict which OSM layer is matched: one of address, poi, railway, natural, manmade, or a comma-separated list of them, in any casing. Any other name is rejected here, not upstream; an empty value counts as omitted. Default: address,poi.","anyOf":[{"type":"string","const":""},{"type":"string","pattern":"^\\s*(?:(?:[aA][dD][dD][rR][eE][sS][sS]|[pP][oO][iI]|[rR][aA][iI][lL][wW][aA][yY]|[nN][aA][tT][uU][rR][aA][lL]|[mM][aA][nN][mM][aA][dD][eE])(?:\\s*,\\s*(?:[aA][dD][dD][rR][eE][sS][sS]|[pP][oO][iI]|[rR][aA][iI][lL][wW][aA][yY]|[nN][aA][tT][uU][rR][aA][lL]|[mM][aA][nN][mM][aA][dD][eE]))*)?\\s*$","description":"One documented layer name, or a comma-separated list of them, in any casing."}]},"extratags":{"default":false,"description":"Include the matched object's extra OSM tags — contact and metadata (phone, website, opening_hours, wikidata) and physical attributes (surface, tracktype, sac_scale, ele, access). An absent tag describes that object, not OpenStreetMap.","type":"boolean"},"language":{"description":"Preferred language for the result (BCP 47 code or Accept-Language string).","type":"string"}},"required":["lat","lon"],"$schema":"https://json-schema.org/draft/2020-12/schema","additionalProperties":false}},{"name":"openstreetmap_search_places","description":"Geocode a place name or address to coordinates and structured place data via Nominatim. Send either a free-form query or the structured address fields (street, city, county, state, country, postalcode), never both; results are the best-ranked matches, not every matching object, and matching never uses an OSM attribute tag, so filter or enumerate by tag with openstreetmap_query_nearby, openstreetmap_query_bbox, or openstreetmap_query_raw.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"query":{"description":"Free-form search string, e.g. \"Space Needle Seattle\" or \"1600 Pennsylvania Ave NW, Washington DC\". Not combinable with the structured address fields. Nominatim reads commas as an address hierarchy, so give the name plus its city or region and nothing in between: \"Beinecke Library, New Haven\" matches where \"Beinecke Library, Yale University, New Haven\" returns nothing.","type":"string"},"street":{"description":"House number and street name (structured query). Use with city/state/country fields. Cannot be combined with query.","type":"string"},"city":{"description":"City name (structured query).","type":"string"},"county":{"description":"County or district (structured query).","type":"string"},"state":{"description":"State or province (structured query).","type":"string"},"country":{"description":"Country name or ISO 3166-1 alpha-2 code (structured query).","type":"string"},"postalcode":{"description":"Postal or ZIP code (structured query).","type":"string"},"limit":{"default":5,"description":"Maximum results to return. Nominatim may return fewer when additional results do not sufficiently match. Max 40.","type":"integer","minimum":1,"maximum":40},"countrycodes":{"description":"Restrict results to one or more countries: comma-separated ISO 3166-1 alpha-2 codes (e.g. \"us,ca\"), any casing, optional spaces around the commas. Any other form — alpha-3, a semicolon list, a country name — is rejected rather than silently dropped upstream. A well-formed code for a country that does not exist matches nothing. An empty value counts as omitted. Prefer this over the structured country field for filtering.","anyOf":[{"type":"string","const":""},{"type":"string","pattern":"^\\s*(?:[A-Za-z]{2}\\s*)?(?:,\\s*(?:[A-Za-z]{2}\\s*)?)*$","description":"One ISO 3166-1 alpha-2 country code, or a comma-separated list of them, in any casing."}]},"viewbox":{"description":"Rectangular area to bias results toward, disambiguating a name that repeats worldwide (a creek in one watershed, a street in one municipality). Narrower than countrycodes. Bias only by default: a better match outside the box is still returned. Set bounded for a hard restriction. Unlike openstreetmap_query_bbox this box may not cross the antimeridian — west must be less than east and south less than north, or the call is rejected.","type":"object","properties":{"west":{"type":"number","minimum":-180,"maximum":180,"description":"Western boundary longitude. Must be strictly less than east."},"south":{"type":"number","minimum":-90,"maximum":90,"description":"Southern boundary latitude. Must be strictly less than north."},"east":{"type":"number","minimum":-180,"maximum":180,"description":"Eastern boundary longitude. Must be strictly greater than west."},"north":{"type":"number","minimum":-90,"maximum":90,"description":"Northern boundary latitude. Must be strictly greater than south."}},"required":["west","south","east","north"]},"bounded":{"description":"Restrict results to the viewbox instead of merely biasing toward it. Requires viewbox — setting it alone is rejected rather than ignored. With it, a match outside the box is dropped even when it scores higher.","type":"boolean"},"layer":{"description":"Filter by data layer: one of address, poi, railway, natural, manmade, or a comma-separated list of them, in any casing. Any other name is rejected here, not upstream; an empty value counts as omitted. Default: no restriction.","anyOf":[{"type":"string","const":""},{"type":"string","pattern":"^\\s*(?:(?:[aA][dD][dD][rR][eE][sS][sS]|[pP][oO][iI]|[rR][aA][iI][lL][wW][aA][yY]|[nN][aA][tT][uU][rR][aA][lL]|[mM][aA][nN][mM][aA][dD][eE])(?:\\s*,\\s*(?:[aA][dD][dD][rR][eE][sS][sS]|[pP][oO][iI]|[rR][aA][iI][lL][wW][aA][yY]|[nN][aA][tT][uU][rR][aA][lL]|[mM][aA][nN][mM][aA][dD][eE]))*)?\\s*$","description":"One documented layer name, or a comma-separated list of them, in any casing."}]},"featureType":{"description":"Restrict results to a geographic feature type. Automatically implies the address layer.","type":"string","enum":["country","state","city","settlement"]},"extratags":{"default":false,"description":"Include the matched object's extra OSM tags — contact and metadata (phone, website, opening_hours, wikidata) and physical attributes (surface, tracktype, sac_scale, ele, access). An absent tag describes that object, not OpenStreetMap. Increases response size.","type":"boolean"},"language":{"description":"Preferred language for result names (BCP 47 code or Accept-Language string, e.g., \"en\", \"de\", \"fr,en\"). Defaults to local OSM language.","type":"string"},"exclude_place_ids":{"description":"OSM refs (N/W/R + id) or Nominatim place_ids to drop from results; any other token form is rejected here rather than by Nominatim. Entries are trimmed, lowercase ref prefixes uppercased, a blank entry treated as absent. Page toward further matches by passing back a prior full page's nextExcludeIds, which prefers stable OSM refs over volatile place_ids; the walk ends when a page returns zero results with an exhaustion notice — a success, not an error. Best-effort, not a cursor: Nominatim ranking can reorder between calls, so already-seen results may shift.","type":"array","items":{"anyOf":[{"type":"string","const":""},{"type":"string","pattern":"^\\s*(?:[NWRnwr]\\d+|\\d+)?\\s*$","description":"An OSM ref (N/W/R plus the object id) or a bare Nominatim place_id."}],"description":"One exclusion token, or an empty value that excludes nothing."}}},"$schema":"https://json-schema.org/draft/2020-12/schema","additionalProperties":false,"anyOf":[{"type":"object","required":["query"]},{"type":"object","required":["street"]},{"type":"object","required":["city"]},{"type":"object","required":["county"]},{"type":"object","required":["state"]},{"type":"object","required":["country"]},{"type":"object","required":["postalcode"]}]}}],"scan":{"score":68,"grade":"C","scanned_at":"2026-09-17T16:31:02.519Z","report":{"scannerVersion":"0.1.2","scannedAt":"2026-09-17T16:31:02.452Z","components":{"code":{"score":25,"max":25,"notes":["42 source files scanned","42 source files scanned"]},"reliability":{"score":20,"max":20,"notes":["remote reachable in 1643ms"]},"poisoning":{"score":15,"max":15,"notes":["6 tool descriptions checked"]},"auth":{"score":3,"max":15,"notes":["open endpoint exposes 1 write-action tools with no auth"]},"maintenance":{"score":3,"max":15,"notes":["repository not readable: github 401"]},"identity":{"score":2,"max":10,"notes":["no repository or website to verify"]}},"findings":[{"id":"auth.open-write","severity":"high","component":"auth","title":"Write-action tools reachable without authentication"}],"inputs":{"probes":[{"url":"https://openstreetmap.caseyjhand.com/mcp","reachable":true,"authRequired":false,"latencyMs":1643,"serverInfo":{"name":"openstreetmap-mcp-server","version":"0.5.1"}}],"packages":[{"registryType":"npm","identifier":"@cyanheads/openstreetmap-mcp-server","version":"0.5.1","found":true,"license":"Apache-2.0","hasInstallScripts":false,"dependencyCount":3,"publishedAt":"2026-09-17T11:45:38.879Z","repositoryUrl":"git+https://github.com/cyanheads/openstreetmap-mcp-server.git","weeklyDownloads":976},{"registryType":"npm","identifier":"@cyanheads/openstreetmap-mcp-server","version":"0.5.1","found":true,"license":"Apache-2.0","hasInstallScripts":false,"dependencyCount":3,"publishedAt":"2026-09-17T11:45:38.879Z","repositoryUrl":"git+https://github.com/cyanheads/openstreetmap-mcp-server.git","weeklyDownloads":976}],"repo":{"found":false,"owner":"cyanheads","repo":"openstreetmap-mcp-server","error":"github 401"}}}},"grade_history":[]}