Hutlists — Alpine huts
Search 5,630 mountain huts in the Alps: records, elevation, season, booking, availability.
Should I use this
Quality & Safety
Findings (5)
- LOWin search-huts
- LOWin get-hut
- LOWin get-hut-availability
- LOWin list-regions
- LOWin list-guides
Based on automated analysis of tool definitions and protocol compliance.
Context Cost
This is the approximate number of tokens consumed each time the server's tools are loaded into a model's context. Higher counts reduce the attention available for other tasks.
Install
One-Click Install
Add this to your `claude_desktop_config.json` file:
{
"mcpServers": {
"hutlists": {
"url": "https://hutlists.com/mcp"
}
}
}Remote endpoints
https://hutlists.com/mcpstreamable-httpWhat it can do
Tool inventory
Tools (5)
🟢search-huts(country, region, q, difficulty, min_elevation, ...)
Search Alpine mountain huts by country, region, name, access difficulty, minimum elevation or proximity to a point. Returns a page of hut summaries with slugs for get-hut.
Input Schema
{
"type": "object",
"properties": {
"country": {
"description": "Country slug from list-regions, e.g. \"austria\".",
"type": "string"
},
"region": {
"description": "Region slug from list-regions, e.g. \"tyrol\".",
"type": "string"
},
"q": {
"description": "Free-text match on the hut name.",
"type": "string"
},
"difficulty": {
"description": "Access difficulty.",
"enum": [
"easy",
"moderate",
"demanding",
"technical"
],
"type": "string"
},
"min_elevation": {
"description": "Minimum elevation in metres.",
"type": "integer"
},
"near": {
"description": "\"latitude,longitude\" to search around, e.g. \"46.02,7.75\".",
"type": "string"
},
"radius_km": {
"description": "Radius around `near` in km (default 25, max 200).",
"type": "number"
},
"sort": {
"description": "Sort order.",
"enum": [
"score",
"elevation",
"name"
],
"type": "string"
},
"per_page": {
"description": "Results per page (max 100).",
"type": "integer"
},
"page": {
"description": "Page number, from 1.",
"type": "integer"
}
}
}🟢get-hut(slug)
Get the full record for one hut: location, elevation, season, capacity, facilities, booking, contact, access routes, FAQs and photos with credits.
Input Schema
{
"type": "object",
"properties": {
"slug": {
"description": "Hut slug from search-huts, e.g. \"franz-senn-hutte\".",
"type": "string"
}
},
"required": [
"slug"
]
}🟢get-hut-availability(slug, from, to)
Free beds per night for one hut, where we hold data. Most huts have none: the answer then says coverage "none" with a machine-readable reason and the hut's booking link, which is a correct answer to pass on.
Input Schema
{
"type": "object",
"properties": {
"slug": {
"description": "Hut slug from search-huts.",
"type": "string"
},
"from": {
"description": "First night, YYYY-MM-DD (default today).",
"type": "string"
},
"to": {
"description": "Last night, YYYY-MM-DD (default 30 days after from).",
"type": "string"
}
},
"required": [
"slug"
]
}🟢list-regions
List the countries and regions in the directory with their slugs and hut counts. Call this first to find valid slugs for search-huts.
Input Schema
{
"type": "object",
"properties": {}
}🟢list-guides
List published route and region guides (e.g. Alta Via 1, Tour du Mont Blanc, Julian Alps), each with its URL and the slugs of the huts it discusses.
Input Schema
{
"type": "object",
"properties": {}
}Community
Evidence