# io.github.uponex/gisgp (remote · gisgp.com)

GIS tools for AI agents: 65 free tools + 8 paid (hazard/site-scouting/GeoJSON export)

- Trust score: 63/100 (medium)
- Change this week: +5
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- remote · `gisgp.com`: 63/100 (this document), [markdown](https://verifymcp.io/servers/uponex-gisgp/gisgp.md), [page](https://verifymcp.io/servers/uponex-gisgp/gisgp)

## Channel facts

- Endpoint: `https://gisgp.com/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `1.3.0`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Endpoint Security**: 63/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation not fully verified: no authorisation is required to call this server, and 78 tool(s) never declared a destructiveHint. The MCP spec treats an absent hint as destructive by default, so we cannot call this surface safe.
  - HTTPS is enforced; there's no plaintext access path.
  - The HSTS (Strict-Transport-Security) header is present.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 58/100
  - AI-judged instruction clarity (fair).
  - Tool/resource definitions use about 7813 tokens (~100/item across 78 items; 78 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 71/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 0% of tool parameters carry a description.
  - Structured output schemas are declared (99% of tools); any adoption earns full credit.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http uponex-gisgp https://gisgp.com/mcp
```

### Codex

```toml
[mcp_servers.uponex-gisgp]
url = "https://gisgp.com/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "uponex-gisgp": {
      "type": "remote",
      "url": "https://gisgp.com/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add uponex-gisgp --url https://gisgp.com/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  uponex-gisgp:
    url: "https://gisgp.com/mcp"
```

### Other

```json
{
  "mcpServers": {
    "uponex-gisgp": {
      "type": "http",
      "url": "https://gisgp.com/mcp"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 63, +1)

No change was recorded against any check on this day. Stability & Change Management went from 23 to 27. That category is still filling its 30-day observation window: 7 days of observed history at the previous scan, 8 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-08-02 (score 62, 0)

- [functional] New tool “assess_supply_chain_redundancy”
- [functional] New tool “assess_energy_community_credit”
- [functional] New tool “assess_portfolio_climate_disclosure”

### 2026-08-01 (score 62, +1)

No change was recorded against any check on this day. Stability & Change Management went from 17 to 20. That category is still filling its 30-day observation window: 5 days of observed history at the previous scan, 6 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-31 (score 61, +1)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 60, +1)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-29 (score 59, 0)

- [security] Tool “estimate_cost” rewrote its description, which is the text the model reads
- [functional regression] Schema quality: 5750 → 6699
- [functional] Schema quality: good → fair
- [functional] New tool “export_geojson_to_excel”
- [functional] New tool “export_geojson_to_pdf”
- [functional] New tool “rank_hazard_safe_sites”
- [functional] New tool “assess_site_due_diligence”
- [functional] New tool “assess_datacenter_site”
- [functional] New tool “assess_reforestation_site”
- [cosmetic] “estimate_cost” added an optional parameter “units”

### 2026-07-28 (score 59, +1)

- [functional regression] Schema quality: 77 → 85

### 2026-07-27 (score 58, +1)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

## MCP tools (78)

### `convert_coordinates` (~103 tokens)

Convert coordinate pairs between EPSG coordinate systems (max 1000 points).

    points: [[x, y], ...] in from_epsg axis order (lon/lat for EPSG:4326).
    Returns JSON: {"points": [[x, y], ...], "from_epsg": ..., "to_epsg": ...}.

Input parameters:

- `from_epsg` (integer, required)
- `points` (array, required)
- `to_epsg` (integer, required)

Output parameters:

- `result` (string)

### `validate_geojson` (~51 tokens)

Validate GeoJSON (RFC 7946 structure, topology, WGS84 coordinate ranges).

    Returns a JSON report: {valid, errors, warnings, stats}.

Input parameters:

- `geojson` (string, required)

Output parameters:

- `result` (string)

### `geojson_to_csv` (~33 tokens)

Convert a GeoJSON FeatureCollection to CSV (feature properties + geometry column).

Input parameters:

- `geojson` (string, required)

Output parameters:

- `result` (string)

### `count_features` (~92 tokens)

Count features in an ArcGIS FeatureServer layer, optionally filtered by a WHERE clause.

    service_url: full layer URL ending in /FeatureServer/<n>. token: only for private layers.
    Returns JSON: {"ok": true, "count": ..., "name": ..., "geometry": ...}.

Input parameters:

- `service_url` (string, required)
- `token` (string)
- `where` (string)

Output parameters:

- `result` (string)

### `extract_domains` (~60 tokens)

Extract coded value domains from an ArcGIS FeatureServer layer.

    Returns JSON: {"layer_name": ..., "domains": {field: {name, field_alias, codes}}}.

Input parameters:

- `service_url` (string, required)
- `token` (string)

Output parameters:

- `result` (string)

### `check_field_types` (~74 tokens)

Inspect the field schema of an ArcGIS FeatureServer layer.

    Returns JSON: {layer_name, geometry_type, fields:[{name, alias, type,
    length, nullable, has_domain}]} — useful before importing/mapping data.

Input parameters:

- `service_url` (string, required)
- `token` (string)

Output parameters:

- `result` (string)

### `check_service_health` (~68 tokens)

Check whether an ArcGIS FeatureServer layer is reachable and responsive.

    Returns JSON: {ok, ms (latency), name, geometry_type, field_count,
    record_count, capabilities, max_record_count}.

Input parameters:

- `service_url` (string, required)
- `token` (string)

Output parameters:

- `result` (string)

### `rest_explore` (~84 tokens)

List the layers and tables of an ArcGIS FeatureServer/MapServer root.

    Point at a service root to enumerate its layers/tables, or at a single
    layer URL to describe it. Returns JSON: {is_server, layers:[{id, name, type}]}.

Input parameters:

- `service_url` (string, required)
- `token` (string)

Output parameters:

- `result` (string)

### `compare_schemas` (~92 tokens)

Compare the field schemas of two ArcGIS FeatureServer layers.

    Returns JSON diff: {added, removed, changed:[{field, diffs}], same,
    geometry_match, identical} — useful for QA before an import or migration.

Input parameters:

- `service_url_a` (string, required)
- `service_url_b` (string, required)
- `token_a` (string)
- `token_b` (string)

Output parameters:

- `result` (string)

### `shapefile_to_geojson` (~90 tokens)

Convert a Shapefile ZIP (base64-encoded .zip with .shp/.dbf/.shx[/.prj])
    to a GeoJSON FeatureCollection. Reprojects to WGS84 if a .prj says otherwise.

    Returns JSON: {geojson: {...}, reprojection_notice: str|null}.

Input parameters:

- `shapefile_zip_base64` (string, required)

Output parameters:

- `result` (string)

### `kml_to_geojson` (~51 tokens)

Convert KML (2.0–2.2) to a GeoJSON FeatureCollection.

    Returns the GeoJSON FeatureCollection as a JSON string.

Input parameters:

- `kml` (string, required)

Output parameters:

- `result` (string)

### `gpx_to_geojson` (~50 tokens)

Convert GPX (waypoints, tracks, routes) to a GeoJSON FeatureCollection.

    Returns the GeoJSON FeatureCollection as a JSON string.

Input parameters:

- `gpx` (string, required)

Output parameters:

- `result` (string)

### `query_features` (~100 tokens)

Fetch actual feature records (attributes + geometry) from a FeatureServer layer.

    Free preview capped at 50 records (WHERE filter + chosen fields). Returns JSON:
    {returned, total, truncated, geojson, note}. Full unlimited export is a paid operation.

Input parameters:

- `limit` (integer)
- `out_fields` (string)
- `service_url` (string, required)
- `token` (string)
- `where` (string)

Output parameters:

- `result` (string)

### `query_statistics` (~128 tokens)

Server-side aggregate stats on a numeric field of a FeatureServer layer.

    No records fetched — AGOL computes sum/avg/min/max/count (also stddev/var).
    Optional WHERE filter and group_by field. Returns JSON: {field, results:[...]}.
    Cheap way to answer "what's the average/total of field X" without an export.

Input parameters:

- `field` (string, required)
- `group_by` (string)
- `service_url` (string, required)
- `stats` (string)
- `token` (string)
- `where` (string)

Output parameters:

- `result` (string)

### `geometry_stats` (~56 tokens)

Compute area (m²/km²), length (m/km), vertex count, centroid and bbox of GeoJSON.

    Metric measurements use an equal-area projection so area/length are real metres.

Input parameters:

- `geojson` (string, required)

Output parameters:

- `result` (string)

### `reproject_geojson` (~52 tokens)

Reproject an entire GeoJSON between EPSG coordinate systems (all geometry types).

Input parameters:

- `from_epsg` (integer, required)
- `geojson` (string, required)
- `to_epsg` (integer, required)

Output parameters:

- `result` (string)

### `simplify_geometry` (~43 tokens)

Simplify GeoJSON geometry (Douglas–Peucker, tolerance in degrees). Lower = more detail.

Input parameters:

- `geojson` (string, required)
- `tolerance` (number)

Output parameters:

- `result` (string)

### `reduce_precision` (~38 tokens)

Round every coordinate to N decimal places — shrinks GeoJSON payload size.

Input parameters:

- `decimals` (integer)
- `geojson` (string, required)

Output parameters:

- `result` (string)

### `csv_to_geojson` (~34 tokens)

Convert CSV with coordinate columns (auto-detected) to a GeoJSON FeatureCollection.

Input parameters:

- `csv` (string, required)

Output parameters:

- `result` (string)

### `geojson_to_kml` (~29 tokens)

Convert a GeoJSON FeatureCollection to KML.

Input parameters:

- `geojson` (string, required)

Output parameters:

- `result` (string)

### `geojson_to_shapefile` (~53 tokens)

Convert a GeoJSON FeatureCollection to a Shapefile ZIP (base64-encoded).

    Returns JSON: {shapefile_zip_base64, warnings}.

Input parameters:

- `geojson` (string, required)

Output parameters:

- `result` (string)

### `gpx_to_kml` (~34 tokens)

Convert GPX (waypoints, tracks, routes) to KML.

Input parameters:

- `gpx` (string, required)

Output parameters:

- `result` (string)

### `kml_to_shapefile` (~48 tokens)

Convert KML to a Shapefile ZIP (base64-encoded). Returns JSON: {shapefile_zip_base64, warnings}.

Input parameters:

- `kml` (string, required)

Output parameters:

- `result` (string)

### `wkt_to_geojson` (~38 tokens)

Convert a WKT geometry string to a GeoJSON geometry (e.g. from PostGIS).

Input parameters:

- `wkt` (string, required)

Output parameters:

- `result` (string)

### `geojson_to_wkt` (~37 tokens)

Convert a GeoJSON geometry (or a Feature's geometry) to a WKT string.

Input parameters:

- `geojson` (string, required)

Output parameters:

- `result` (string)

### `grade_service` (~115 tokens)

Grade an ArcGIS FeatureServer layer A–F across 5 categories (schema quality,
    data completeness, performance, maintenance, configuration).

    Returns JSON: {grade, score, categories:[{key, label, score, note}], archetype,
    insight, percentile, share_url} — share_url is a public scorecard page you can
    send to a human. token: only for private layers (never stored in the scorecard).

Input parameters:

- `service_url` (string, required)
- `token` (string)

Output parameters:

- `result` (string)

### `audit_service` (~89 tokens)

Full one-call QA report of an ArcGIS FeatureServer layer: health (latency,
    record count, capabilities) + field schema + coded domains + summary counts.

    One call replaces separate health/fields/domains lookups. Returns JSON:
    {name, geometry_type, health, fields, domains, summary}.

Input parameters:

- `service_url` (string, required)
- `token` (string)

Output parameters:

- `result` (string)

### `find_layer_issues` (~90 tokens)

Scan an ArcGIS FeatureServer layer for common problems: missing ObjectID,
    disabled query, stale data, all-null fields, features without geometry.

    Sample-based (first 200 records). Returns JSON: {layer_name,
    issues:[{severity, code, message}], issue_count, sample_size, note}.

Input parameters:

- `service_url` (string, required)
- `token` (string)

Output parameters:

- `result` (string)

### `share_map` (~98 tokens)

Publish a GeoJSON FeatureCollection as a live, shareable map page on gisgp.com.

    Returns JSON: {url, expires_at} — url is a public interactive map a human can
    open in a browser (free links live 30 days). Use it to hand off results of a
    GIS workflow visually instead of pasting raw GeoJSON.

Input parameters:

- `geojson` (string, required)
- `name` (string)

Output parameters:

- `result` (string)

### `embed_map_snippet` (~103 tokens)

Ready-to-paste <iframe> embed code for a live interactive map — thin
    wrapper around share_map (same live page, same 30-day TTL), for
    embedding directly in a website/dashboard rather than sharing a link.
    Returns JSON: {ok, embed_html, url, expires_at}.

Input parameters:

- `geojson` (string, required)
- `height` (string)
- `name` (string)
- `width` (string)

Output parameters:

- `result` (string)

### `buffer_geojson` (~87 tokens)

Buffer every feature by a distance in METRES (negative shrinks).

    Geodesically accurate at any latitude (each feature is buffered in a local
    equidistant projection). Returns JSON {ok, distance_m, geojson} where geojson
    is a FeatureCollection of buffer polygons.

Input parameters:

- `distance_m` (number, required)
- `geojson` (string, required)

Output parameters:

- `result` (string)

### `dissolve_geojson` (~69 tokens)

Merge overlapping/adjacent geometries into one (optionally grouped by a
    property field `by` → one dissolved feature per distinct value).

    Returns JSON {ok, by, group_count, geojson}.

Input parameters:

- `by` (string)
- `geojson` (string, required)

Output parameters:

- `result` (string)

### `centroids_geojson` (~48 tokens)

Replace each feature's geometry with its centroid Point (properties kept).

    Returns JSON {ok, geojson} — a FeatureCollection of points.

Input parameters:

- `geojson` (string, required)

Output parameters:

- `result` (string)

### `convex_hull_geojson` (~42 tokens)

Smallest convex polygon containing all input features (a single polygon).

    Returns JSON {ok, geojson}.

Input parameters:

- `geojson` (string, required)

Output parameters:

- `result` (string)

### `overlay_geojson` (~106 tokens)

Combine two GeoJSON FeatureCollections with a boolean set operation.

    op: intersection | difference (a minus b) | symmetric_difference | union.
    Each side is unioned into one geometry first, then the operation is
    applied. Returns JSON {ok, op, geojson} — empty geojson means no overlap,
    not an error.

Input parameters:

- `geojson_a` (string, required)
- `geojson_b` (string, required)
- `op` (string)

Output parameters:

- `result` (string)

### `spatial_join_geojson` (~90 tokens)

Attach properties from every B feature that satisfies a spatial
    predicate to each A feature (as a `_matches` list).

    predicate: intersects | within | contains | touches | crosses | overlaps.
    Returns JSON {ok, predicate, match_count, geojson}.

Input parameters:

- `geojson_a` (string, required)
- `geojson_b` (string, required)
- `predicate` (string)

Output parameters:

- `result` (string)

### `nearest_features_geojson` (~74 tokens)

For each feature in A, find the nearest feature in B by centroid-to-
    centroid geodesic distance. Attaches `_nearest` properties and
    `_nearest_distance_m`. Returns JSON {ok, geojson}.

Input parameters:

- `geojson_a` (string, required)
- `geojson_b` (string, required)

Output parameters:

- `result` (string)

### `fix_geometry` (~61 tokens)

Repair invalid geometries (self-intersections, bad rings) via GEOS
    make_valid. Already-valid geometries are left untouched. Returns JSON
    {ok, fixed_count, feature_count, geojson}.

Input parameters:

- `geojson` (string, required)

Output parameters:

- `result` (string)

### `geojson_diff` (~103 tokens)

Compare two GeoJSON FeatureCollections — added/removed/changed features.

    Matched by an `id_field` property if given, else by array position (exact
    structural comparison, not topological equals). Returns JSON {ok, added,
    removed, changed, added_count, removed_count, changed_count, unchanged_count}.

Input parameters:

- `geojson_a` (string, required)
- `geojson_b` (string, required)
- `id_field` (string)

Output parameters:

- `result` (string)

### `epsg_suggest` (~75 tokens)

Suggest the correct UTM EPSG code to project a WGS84 lon/lat into for
    accurate metric measurements (buffer/area/distance).

    Returns JSON {ok, epsg, utm_zone, hemisphere, name, warning}.

Input parameters:

- `lat` (number, required)
- `lon` (number, required)

Output parameters:

- `result` (string)

### `tile_math` (~85 tokens)

Convert a WGS84 lon/lat + zoom level to Slippy Map (XYZ) tile x/y,
    that tile's lon/lat bbox, and its Bing quadkey.

    Returns JSON {ok, zoom, x, y, tile_bbox, quadkey}.

Input parameters:

- `lat` (number, required)
- `lon` (number, required)
- `zoom` (integer, required)

Output parameters:

- `result` (string)

### `envelope_geojson` (~40 tokens)

Bounding-box rectangle (envelope) per feature, properties kept.

    Returns JSON {ok, geojson}.

Input parameters:

- `geojson` (string, required)

Output parameters:

- `result` (string)

### `minimum_rotated_rectangle` (~49 tokens)

Smallest-area rotated rectangle containing all input features combined
    (may be tilted, unlike a bbox envelope). Returns JSON {ok, geojson}.

Input parameters:

- `geojson` (string, required)

Output parameters:

- `result` (string)

### `voronoi_geojson` (~56 tokens)

Voronoi diagram of the input points (non-point features use their
    centroid). Needs at least 2 points. Returns JSON {ok, cell_count, geojson}.

Input parameters:

- `geojson` (string, required)

Output parameters:

- `result` (string)

### `full_service_audit` (~119 tokens)

Complete one-call QA report: A-F grade + full audit (health/fields/
    domains/summary) + issue scan, merged into one response — replaces 3
    separate calls (grade_service + audit_service + find_layer_issues).

    Returns JSON: {ok, grade, score, categories, archetype, insight,
    percentile, share_url, audit: {name, health, fields, domains, summary},
    issues, issue_count}.

Input parameters:

- `service_url` (string, required)
- `token` (string)

Output parameters:

- `result` (string)

### `geometry_health_report` (~109 tokens)

Complete one-call GeoJSON health check: validate + auto-repair invalid
    geometry + stats (area/length/vertices) + bbox envelope, merged — replaces
    4 separate calls (validate_geojson + fix_geometry + geometry_stats +
    envelope_geojson).

    Returns JSON: {ok, valid, errors, warnings, fixed_count, stats, envelope,
    geojson} where geojson is the (possibly auto-fixed) input.

Input parameters:

- `geojson` (string, required)

Output parameters:

- `result` (string)

### `get_terrain_profile` (~74 tokens)

Elevation (metres) at a WGS84 point via Open-Meteo (Copernicus DEM
    GLO-90, no key, free). Returns JSON: {ok, lon, lat, elevation_m, source}.

Input parameters:

- `lat` (number, required)
- `lon` (number, required)

Output parameters:

- `result` (string)

### `get_climate_history` (~107 tokens)

Daily historical weather for a point/date range via Open-Meteo's
    ERA5-based archive (no key, free, data back to 1940). Dates are
    YYYY-MM-DD. Returns JSON: {ok, daily: {time, <variables>...}, source}.

Input parameters:

- `end_date` (string, required)
- `lat` (number, required)
- `lon` (number, required)
- `start_date` (string, required)
- `variables` (string)

Output parameters:

- `result` (string)

### `classify_land_cover` (~161 tokens)

Land cover class at a WGS84 point via ESA CCI Land Cover 2018 (ArcGIS
    Living Atlas ImageServer, no key, 300m resolution). Returns JSON:
    {ok, class_code, class_label, source}.

    NOTE 2026-07-26: gated separately (mcp_layer1_landcover, Off pending live
    smoke-check) — swapped from the earlier ESA WorldCover WMS source, which
    was confirmed dead (being phased out). This ArcGIS REST identify endpoint
    was live-verified locally (Sofia -> class 8, "Artificial Surface or
    Urban Area") before this swap.

Input parameters:

- `lat` (number, required)
- `lon` (number, required)

Output parameters:

- `result` (string)

### `analyze_location` (~82 tokens)

Reverse-geocode a WGS84 point to country/region/locality via OSM
    Nominatim (no key, free — fair-use rate limited, best-effort). Returns
    JSON: {ok, display_name, country, country_code, region, locality, source}.

Input parameters:

- `lat` (number, required)
- `lon` (number, required)

Output parameters:

- `result` (string)

### `geocode_address` (~149 tokens)

Forward-geocode a free-text address to lon/lat. Default: OSM Nominatim
    (no key, free, fair-use rate limited) — the complement to
    analyze_location's reverse geocode. Optional agol_token: route through
    Esri's own World Geocoding Service instead for more authoritative
    matches — uses YOUR OWN AGOL credentials/quota, not GISGP's (no extra
    charge either way, no GISGP account needed for this option). Returns
    JSON: {ok, lon, lat, display_name, type, importance, source}.

Input parameters:

- `address` (string, required)
- `agol_token` (string)

Output parameters:

- `result` (string)

### `offset_coordinates` (~110 tokens)

Move a WGS84 point by a geodesic distance (metres) along a compass
    bearing (0=N, 90=E, 180=S, 270=W). Pure computation, no external API.
    Returns JSON: {ok, lon, lat, origin_lon, origin_lat, distance_m, bearing_deg, source}.

Input parameters:

- `bearing_deg` (number, required)
- `distance_m` (number, required)
- `lat` (number, required)
- `lon` (number, required)

Output parameters:

- `result` (string)

### `detect_coordinate_order` (~117 tokens)

Detect whether [x, y] pairs are [lon, lat] or [lat, lon] — resolves
    a genuinely common real-world confusion (one of the most-viewed GIS
    StackExchange questions ever, 550k+ views). Certain when any value
    exceeds ±90 (only longitude can); honestly reports 'inconclusive'
    otherwise, never a fabricated guess. Pure computation, no external API.
    Returns JSON: {ok, order, confidence, note}.

Input parameters:

- `points` (array, required)

Output parameters:

- `result` (string)

### `guess_crs_from_coordinates` (~123 tokens)

Best-guess candidate CRS for raw [x, y] coordinates with no metadata
    (e.g. a shapefile with a missing .prj) — real demand signal (79k+ views
    on GIS StackExchange). Genuinely ambiguous by nature — returns ranked
    candidates with an honest 'not a certain identification' caveat, never
    a single confident answer. Pure computation, no external API.
    Returns JSON: {ok, x_range, y_range, candidates, note}.

Input parameters:

- `points` (array, required)

Output parameters:

- `result` (string)

### `generate_static_map_image` (~227 tokens)

Render a GeoJSON FeatureCollection/Feature to a static PNG map image
    (base64 data URL) — for embedding in reports/emails/documents, unlike
    share_map's interactive live page. basemap: 'topo', 'streets', or
    'satellite'. Reuses the exact rendering path already used inside PDF
    map reports, no new map-rendering logic. Optional agol_token: for a
    single-Point input, renders through Esri's own Static Maps Service
    instead (real ArcGIS basemap tiles) — uses YOUR OWN AGOL
    credentials/quota, not GISGP's (multi-feature/non-point input always
    uses the default renderer regardless of token). Returns JSON: {ok,
    image_data_url, feature_count, width, height, basemap}.

Input parameters:

- `accent` (string)
- `agol_token` (string)
- `basemap` (string)
- `geojson` (string, required)
- `height` (integer)
- `width` (integer)

Output parameters:

- `result` (string)

### `assess_grid_exposure` (~103 tokens)

Electric grid infrastructure proximity at a US point: nearby
    substations + transmission lines within 10 miles (community ArcGIS
    mirror of HIFLD data — proximity indicator, not a certified survey).
    No key needed. Returns JSON: {ok, substations: {count, nearest,
    source}, transmission_lines: {count, volt_classes, owners, source}}.

Input parameters:

- `lat` (number, required)
- `lon` (number, required)

Output parameters:

- `result` (string)

### `assess_renewable_site` (~106 tokens)

One-call solar/wind site-scouting indicator: terrain + land cover +
    1-year solar/wind climate averages + grid proximity, combined from
    GISGP's existing free primitives (no new external source). No key
    needed. Returns JSON: {ok, terrain, land_cover, solar_wind, grid_proximity}.
    Not a substitute for a professional feasibility study.

Input parameters:

- `lat` (number, required)
- `lon` (number, required)

Output parameters:

- `result` (string)

### `assess_pipeline_proximity` (~116 tokens)

Natural gas interstate/intrastate transmission pipeline proximity at
    a US point (EIA/HIFLD, 32,892 segments). Substitute for proprietary
    local-utility "call before you dig" data — covers major transmission
    pipelines only, NOT local distribution lines. Not a substitute for
    calling 811 before excavation. No key needed.
    Returns JSON: {ok, count, pipeline_types, operators, source, note}.

Input parameters:

- `lat` (number, required)
- `lon` (number, required)

Output parameters:

- `result` (string)

### `assess_protected_area_proximity` (~119 tokens)

US protected/conservation area proximity via USGS PAD-US (public
    domain, commercial-use OK — unlike Protected Planet/WDPA, whose API
    explicitly forbids commercial-entity use). Reports whether the point
    falls inside/near (2 mile radius) a federally-tracked protected area:
    name, managing agency, designation type, public access. US-only.
    Returns JSON: {ok, count, areas, source, note}.

Input parameters:

- `lat` (number, required)
- `lon` (number, required)

Output parameters:

- `result` (string)

### `discover_open_geodata` (~121 tokens)

Keyword search across ArcGIS Hub Open Data — real public
    FeatureServer/MapServer datasets from government/organization ArcGIS
    Online portals worldwide. Returns real service_url values usable
    directly with query_features/count_features/rest_explore/compare_schemas.
    Free, no API key. Not a universal open-data search (ArcGIS Hub coverage
    only — see tool note).
    Returns JSON: {ok, query, count, results, source, note}.

Input parameters:

- `limit` (integer)
- `query` (string, required)

Output parameters:

- `result` (string)

### `assess_ev_charging_site` (~89 tokens)

One-call EV charging site-scouting indicator: grid proximity (power
    for fast-charging) + land cover + locality context, combined from
    GISGP's existing free primitives. No key needed.
    Returns JSON: {ok, grid_proximity, land_cover, location, physically_unsuitable}.

Input parameters:

- `lat` (number, required)
- `lon` (number, required)

Output parameters:

- `result` (string)

### `assess_telecom_site` (~89 tokens)

One-call cell tower site-scouting indicator: grid proximity + terrain
    elevation (line-of-sight proxy) + land cover, combined from GISGP's
    existing free primitives. No key needed.
    Returns JSON: {ok, grid_proximity, terrain, land_cover, physically_unsuitable}.

Input parameters:

- `lat` (number, required)
- `lon` (number, required)

Output parameters:

- `result` (string)

### `rank_renewable_sites` (~129 tokens)

Bulk solar/wind site screener — evaluates up to 25 candidate points
    (each {"lon": ..., "lat": ...}) and returns only the top_n, ranked by
    average daily solar radiation. Candidates with unsuitable land cover
    (urban/water/snow) or no substation nearby are filtered out, not
    silently scored low. No invented composite score. No key needed.
    Returns JSON: {ok, evaluated, excluded_count, excluded, ranked_by, top}.

Input parameters:

- `candidates` (array, required)
- `top_n` (integer)

Output parameters:

- `result` (string)

### `assess_wildfire_risk` (~122 tokens)

Real-time active wildfire proximity at a point via NASA FIRMS
    (VIIRS satellite hotspot detections, last 2 days) + electric grid
    exposure (transmission lines are a documented wildfire-ignition-
    liability factor). No key needed — GISGP holds its own free NASA
    FIRMS key server-side. Two separate honest indicators, no fabricated
    combined risk score. Returns JSON: {ok, active_fires, grid_proximity}.

Input parameters:

- `lat` (number, required)
- `lon` (number, required)

Output parameters:

- `result` (string)

### `calculate_route` (~172 tokens)

Real driving distance + duration between two points. Default: OSRM
    (public demo instance, no key — fair-use limited, not a production SLA).
    Optional agol_token: route through Esri's own World Route Service
    instead — uses YOUR OWN AGOL credentials/quota, not GISGP's (no extra
    charge either way, no GISGP account needed for this option).
    Returns "no_route" honestly when no driving path exists (e.g. across
    open water). Returns JSON: {ok, routable, distance_km, duration_min, source}.

Input parameters:

- `agol_token` (string)
- `dest_lat` (number, required)
- `dest_lon` (number, required)
- `origin_lat` (number, required)
- `origin_lon` (number, required)

Output parameters:

- `result` (string)

### `estimate_cost` (~179 tokens)

FREE — quote a paid tool's cost WITHOUT executing it or charging the
    wallet (call this before assess_property_hazard etc.).
    `units` = candidate/item count for per-unit-priced tools (currently only
    rank_hazard_safe_sites — pass the number of candidates you intend to
    submit); ignored (treated as 1) for every flat-priced tool. Returns JSON:
    {ok, tool_name, units, credits, eur_estimate} for credits-wallet tools;
    for assess_property_hazard_x402 (paid on-chain via x402, not the credits
    wallet) returns {ok, tool_name, units, payment, price_usd} instead; or
    {ok: false, error} for an unknown/free tool name.

Input parameters:

- `tool_name` (string, required)
- `units` (integer)

Output parameters:

- `result` (string)

### `check_wallet_balance` (~89 tokens)

FREE — check your own MCP credits wallet balance (the same account
    paid tools like assess_property_hazard charge against). Requires
    Authorization: Bearer <api_key> — an agent can call this on its own,
    no browser/dashboard needed. Returns JSON: {ok, balance, eur_equivalent}
    or {ok: false, error} if no API key was provided.

Output parameters:

- `result` (string)

### `assess_property_hazard` (~255 tokens)

PAID (200 credits) — multi-source US property hazard indicator: USGS
    seismic risk (required), plus best-effort FEMA disaster declaration
    history (state, last 10 years) and NOAA real-time active severe weather
    alerts at the point. Requires Authorization: Bearer <api_key> and a
    sufficient credits balance — top up at
    https://gisgp.com/billing/mcp-credits/topup. Use estimate_cost first to quote
    without charging. Returns JSON: {ok, pga_percent_g, hazard_note, source,
    disaster_history_10y, active_weather_alerts}.

    NOTE 2026-07-28: still not a full multi-hazard property report — no
    flood-plain/wildfire-hazard polygon layer is reachable from GISGP's
    infrastructure (FEMA NFHL/USFS geo-IP/WAF blocks), see hazard_scoring.py
    module docstring and .claude/plans/kind-snacking-puppy.md. No invented
    composite risk score — each source is reported honestly as what it is.

Input parameters:

- `lat` (number, required)
- `lon` (number, required)

Output parameters:

- `result` (string)

### `rank_hazard_safe_sites` (~200 tokens)

PAID (200 credits PER CANDIDATE, max 25 candidates/call) — bulk seismic-
    risk screener. Runs assess_property_hazard's seismic check under the hood
    for each [lon, lat] candidate and returns only the top_n ranked by lowest
    real seismic risk (PGA). Not a full multi-hazard ranking — ranked by ONE
    real, single-source metric only (matches this project's no-invented-
    composite-score stance); disaster_history_10y/active_weather_alerts are
    still included per-candidate for context. Use estimate_cost(tool_name=
    "rank_hazard_safe_sites", units=<candidate count>) first to quote.
    Requires Authorization: Bearer <api_key>. Returns JSON: {ok, evaluated,
    excluded_count, excluded, ranked_by, top, note}.

Input parameters:

- `candidates` (array, required)
- `top_n` (integer)

Output parameters:

- `result` (string)

### `assess_portfolio_climate_disclosure` (~196 tokens)

PAID (200 credits PER PROPERTY, max 25 properties/call) — bulk physical
    climate-risk disclosure input for a real-estate/asset portfolio (SEC
    climate disclosure rule / EU CSRD physical-risk reporting). Runs
    assess_property_hazard for each [lon, lat] property and returns honest
    aggregate counts (properties with FEMA disaster history, properties with
    active NOAA alerts) alongside each property's own full result — no
    invented portfolio-level risk score. Use estimate_cost(tool_name=
    "assess_portfolio_climate_disclosure", units=<property count>) first to
    quote. Requires Authorization: Bearer <api_key>. Returns JSON: {ok,
    evaluated, scored_count, failed_count, failed, properties_with_disaster_
    history_10y, properties_with_active_weather_alerts, properties, note}.

Input parameters:

- `properties` (array, required)

Output parameters:

- `result` (string)

### `assess_supply_chain_redundancy` (~232 tokens)

PAID (400 credits) — checks whether two supposedly-redundant sites
    (e.g. two "backup" suppliers/warehouses/data centers) are actually
    independent: real geodesic distance between them + each site's own
    multi-source hazard profile (seismic + FEMA + NOAA) side by side, plus
    any FEMA disaster incident types they share in the last 10 years. No
    invented "redundancy score" — the caller judges independence from the
    real data. CAVEAT: FEMA disaster history is STATE-level, not point-level
    — two sites in the same state usually share most incident types
    regardless of true distance, so distance_km is the more reliable
    independence signal for same-state comparisons. Requires Authorization:
    Bearer <api_key> and sufficient credits balance. Returns JSON: {ok,
    distance_km, site_a, site_b, shared_fema_incident_types_10y, note}.

Input parameters:

- `site_a` (array, required)
- `site_b` (array, required)

Output parameters:

- `result` (string)

### `assess_energy_community_credit` (~196 tokens)

PAID (100 credits) — US Inflation Reduction Act "energy community"
    bonus tax credit qualification lookup for a renewable energy project
    site. Checks both DOE/NETL-published qualifying pathways (coal-mine-
    closure/coal-plant-retirement adjoining tracts, and MSA/non-MSA fossil-
    fuel-employment + above-average-unemployment areas) — a point qualifies
    if either matches. Reports qualification only, not a project-specific
    dollar estimate (the +10 percentage-point ITC/PTC bonus is the one
    publicly documented figure). Requires Authorization: Bearer <api_key>
    and sufficient credits balance. Returns JSON: {ok, lon, lat, qualifies_
    for_bonus_credit, coal_closure_pathway, msa_fossil_employment_pathway,
    bonus_note, source}.

Input parameters:

- `lat` (number, required)
- `lon` (number, required)

Output parameters:

- `result` (string)

### `assess_datacenter_site` (~137 tokens)

PAID (300 credits) — data center site-scouting composite: grid
    proximity (power availability), multi-source hazard (seismic + FEMA +
    NOAA, required — same contract as assess_property_hazard), land cover,
    and a year of temperature history (cooling-load proxy). No invented
    overall suitability score — each source reported honestly. Requires
    Authorization: Bearer <api_key> and sufficient credits balance. Returns
    JSON: {ok, hazard, grid_proximity, land_cover, cooling_climate, note}.

Input parameters:

- `lat` (number, required)
- `lon` (number, required)

Output parameters:

- `result` (string)

### `assess_reforestation_site` (~153 tokens)

PAID (100 credits) — reforestation/afforestation site-scouting
    composite: terrain, land cover (flags already-forested/urban/water/snow
    as unsuitable), and a year of precipitation history (tree-viability
    proxy). All-free-primitive composite, priced for the bulk-screening
    convenience (carbon-offset/land-screening use case), no invented
    "sequestration score". Requires Authorization: Bearer <api_key> and
    sufficient credits balance. Returns JSON: {ok, terrain, land_cover,
    physically_unsuitable, precipitation, note}.

Input parameters:

- `lat` (number, required)
- `lon` (number, required)

Output parameters:

- `result` (string)

### `assess_site_due_diligence` (~135 tokens)

PAID (300 credits) — master due-diligence report for a point: wraps
    assess_property_hazard (seismic + FEMA + NOAA, required) plus grid
    proximity, land cover, and reverse-geocoded locality — all in one call.
    No invented overall "site score" across sources. Requires Authorization:
    Bearer <api_key> and sufficient credits balance. Use estimate_cost first
    to quote. Returns JSON: {ok, hazard, grid_exposure, land_cover, locality, note}.

Input parameters:

- `lat` (number, required)
- `lon` (number, required)

Output parameters:

- `result` (string)

### `export_geojson_to_pdf` (~142 tokens)

PAID (150 credits) — render an ad-hoc GeoJSON FeatureCollection to a
    one-page PDF report (static map + property table, base64-encoded PDF).
    Separate from the web app's own PDF Builder (AGOL-service-tied, quota-
    gated there) — this is for GeoJSON an agent already has in hand. Requires
    Authorization: Bearer <api_key> and sufficient credits balance. Returns
    JSON: {ok, pdf_base64, feature_count, truncated, size_bytes}.

Input parameters:

- `accent` (string)
- `geojson` (string, required)
- `title` (string)

Output parameters:

- `result` (string)

### `export_geojson_to_excel` (~124 tokens)

PAID (80 credits) — convert a GeoJSON FeatureCollection to an Excel
    workbook (.xlsx, base64-encoded). Point geometries get LATITUDE/LONGITUDE
    columns; other geometry types get a GEOMETRY_WKT column. Separate from
    the web app's own Excel export (AGOL-service-tied, quota-gated there).
    Requires Authorization: Bearer <api_key> and sufficient credits balance.
    Returns JSON: {ok, xlsx_base64, feature_count}.

Input parameters:

- `geojson` (string, required)

Output parameters:

- `result` (string)

### `assess_property_hazard_x402` (~120 tokens)

PAID via x402 (USDC on Base Sepolia testnet, ~$0.20/call) — no GISGP account or API key needed, the agent pays directly on-chain. Multi-source US property hazard indicator (USGS seismic + FEMA disaster history + NOAA active alerts), same underlying data as assess_property_hazard. Returns JSON: {ok, pga_percent_g, hazard_note, source, disaster_history_10y, active_weather_alerts}.

Input parameters:

- `lat` (number, required)
- `lon` (number, required)

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/uponex-gisgp/gisgp#diagnostics

## Score history

- 2026-08-03: 63
- 2026-08-02: 62
- 2026-08-01: 62
- 2026-07-31: 61
- 2026-07-30: 60
- 2026-07-29: 59
- 2026-07-28: 59
- 2026-07-27: 58
- 2026-07-26: 57

## Links

- Remote endpoint: https://gisgp.com/mcp
- Repository: https://github.com/uponex/gisgp-mcp
- Changelog RSS feed: https://verifymcp.io/servers/uponex-gisgp/gisgp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/uponex-gisgp/gisgp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/uponex-gisgp/gisgp
