macrostrat

map-tiles

Get map tile URLs from the Macrostrat tiles server. Use lat-lng-to-tile tool first to get proper x,y coordinates. Defaults to 'carto' scale which automatically adapts detail level to zoom.

Remote blake365/macrostrat-mcp

Other tools also called map-tiles? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "x": {
      "type": "integer",
      "minimum": 0,
      "description": "Tile X coordinate - use lat-lng-to-tile tool to calculate this from lat/lng"
    },
    "y": {
      "type": "integer",
      "minimum": 0,
      "description": "Tile Y coordinate - use lat-lng-to-tile tool to calculate this from lat/lng"
    },
    "z": {
      "type": "integer",
      "maximum": 18,
      "minimum": 0,
      "description": "Zoom level (0-18). Higher zoom = more detailed view of smaller area. Typical values: z=3 (continent), z=6 (country), z=10 (city), z=15 (neighborhood)"
    },
    "scale": {
      "enum": [
        "carto",
        "tiny",
        "small",
        "medium",
        "large"
      ],
      "type": "string",
      "default": "carto",
      "description": "Map scale layer - 'carto' automatically selects appropriate detail level based on zoom. Other scales (tiny, small, medium, large) may have limited coverage."
    },
    "format": {
      "enum": [
        "mvt",
        "png"
      ],
      "type": "string",
      "default": "png",
      "description": "Tile format: 'png' for images, 'mvt' for vector tiles"
    },
    "fetch_image": {
      "type": "boolean",
      "default": false,
      "description": "If true, actually fetch the tile image data so Claude can analyze the geological features visually"
    }
  }
}