← snowdesk.info

INDIVIDUAL MCP TOOL

get_danger_history

Return per-day minimum/maximum danger ratings for one region over a date range.

snowdesk.infonone authenticationAvailability not checked

LIVE ENDPOINT

https://snowdesk.info/api/mcp

No auth detected

Connect to this endpoint to inspect the live schema for get_danger_history and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • No write-capable action terms were found; this is not proof that invocation has no side effects.

Parent server

snowdesk.info

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.snowdesk]
url = "https://snowdesk.info/api/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "snowdesk": {
      "type": "http",
      "url": "https://snowdesk.info/api/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: snowdesk
Remote MCP URL: https://snowdesk.info/api/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "snowdesk": {
      "url": "https://snowdesk.info/api/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "snowdesk": {
      "type": "http",
      "url": "https://snowdesk.info/api/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "snowdesk",
  "transport": "streamable-http",
  "url": "https://snowdesk.info/api/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • search_regions — Fuzzy-search Snowdesk's ski resorts and avalanche-warning regions by a free-text place name.
  • get_current_conditions — Return the avalanche danger rating and forecaster prose (snowpack structure, weather forecast, avalanche activity) for one region on a given day.
  • get_avalanche_problems — Return the structured avalanche-problem list (type, elevation band, aspects, forecaster comment) for one region on a given day — the decision-support detail behind the scalar danger level from get_current_conditions.
  • list_resorts_in_region — List the geocoded ski resorts within one avalanche-warning region.
  • get_bulletin_metadata — Return provenance metadata for the bulletin covering one region on one day: issued_at, valid_from/to, next_update_expected, source_provider (slf/albina/meteofrance), source_url for citation, and language variants.
  • get_bulletin_raw — Escape hatch: return the full CAAML v6 payload (wrapped in a GeoJSON Feature envelope) for one region on one day.
  • bulk_current_conditions — Batched fan-out over get_current_conditions.
  • find_regions_near — Reverse geolocation: given (lat, lon, radius_km) return the covered avalanche-warning regions inside the radius, nearest first.