alltrails mcp for VS Code
io.github.chrischall/alltrails-mcp
Unofficial AllTrails MCP for Claude — search trails, get details, reviews, photos, saved lists
client:VS Code
transport:stdio
runtime:npm
Install alltrails mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "alltrails-user-id",
"description": "ALLTRAILS_USER_ID",
"password": true
}
],
"servers": {
"alltrails-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"alltrails-mcp"
],
"env": {
"ALLTRAILS_USER_ID": "${input:alltrails-user-id}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs