Mountaineers MCP Server
Allows ChatGPT to search and browse mountaineers.org for activities, courses, trip reports, routes, and member account info.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Mountaineers MCP ServerFind me a beginner-friendly day hike near Seattle this weekend"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Mountaineers MCP Server
What is this?
This lets AI assistants like Claude and ChatGPT search and browse mountaineers.org on your behalf. Instead of clicking through the website, you can ask questions in plain English:
"Find me a beginner-friendly day hike near Seattle this weekend"
"What scrambles are available in August?"
"Show me trip reports for Mount Pilchuck"
"What's the elevation gain on the Mount Si trail?"
"What activities am I signed up for?"
"What badges have I earned?"
The AI reads the Mountaineers website, understands the results, and gives you a conversational answer -- no manual searching required. Read the full story: I Built an MCP Server for Mountaineers.org.
What can it do?
Search the website (no login needed):
Search activities by type, branch, difficulty, date, and more
Search courses, clinics, and seminars
Browse trip reports
Search routes and places
Get full details for any activity, trip report, route, or course
Access your account (with your login):
See your upcoming and past activities
See your completed activity history
See your course enrollments
View your earned badges and certifications
View member profiles and activity rosters
Setup
Follow the instructions for your AI app below.
Claude Desktop
Download
mountaineers-mcp-X.Y.Z.mcpbfrom the latest releaseOpen Claude Desktop → Settings → Extensions → Install Extension
Select the downloaded
.mcpbfileEnter your mountaineers.org credentials if you want account access (optional)
That's it -- no Node.js install required.
Requires Node.js 18+.
Go to Settings > Developer > Edit Config
Paste this and save:
{
"mcpServers": {
"mountaineers": {
"command": "npx",
"args": ["-y", "mountaineers-mcp"]
}
}
}Quit and reopen Claude Desktop (not just close the window -- fully quit)
To also access your account (activity history, rosters, etc.), add your mountaineers.org credentials:
{
"mcpServers": {
"mountaineers": {
"command": "npx",
"args": ["-y", "mountaineers-mcp"],
"env": {
"MOUNTAINEERS_USERNAME": "your-username",
"MOUNTAINEERS_PASSWORD": "your-password"
}
}
}
}Your credentials stay on your computer and are only sent to mountaineers.org.
ChatGPT Desktop
ChatGPT Desktop supports MCP through Developer Mode, but only remote HTTP servers -- it cannot run local command-line tools like Claude Desktop can. To use this server with ChatGPT Desktop, you would need to run it behind a tunnel (e.g., mcp.run or ngrok). This is not yet streamlined; we plan to add Streamable HTTP transport in a future release.
Requires ChatGPT Plus, Pro, Team, or Enterprise.
Claude Code (CLI)
Run this in your terminal:
claude mcp add mountaineers -- npx -y mountaineers-mcpOr add to your .mcp.json:
{
"mcpServers": {
"mountaineers": {
"command": "npx",
"args": ["-y", "mountaineers-mcp"],
"env": {
"MOUNTAINEERS_USERNAME": "your-username",
"MOUNTAINEERS_PASSWORD": "your-password"
}
}
}
}Codex CLI
Add to ~/.codex/config.toml:
[mcp_servers.mountaineers]
command = "npx"
args = ["-y", "mountaineers-mcp"]
[mcp_servers.mountaineers.env]
MOUNTAINEERS_USERNAME = "your-username"
MOUNTAINEERS_PASSWORD = "your-password"Or use the CLI:
codex mcp add mountaineers -- npx -y mountaineers-mcpTools reference
Public (no login required)
Tool | Description |
| Search activities with filters (type, branch, difficulty, date, day of week) |
| Search courses, clinics, and seminars |
| Search trip reports by text and activity type |
| Search routes and places with filters (activity type, difficulty, climbing category) |
| Get full activity details (leader notes, route, equipment) |
| Get trip report details (conditions, route info) |
| Get route details (difficulty, elevation, directions, maps, related routes) |
| Get course details (schedule, pricing, leaders, badges earned) |
Authenticated (login required)
Tool | Description |
| Get your name, profile URL, and member slug |
| Your registered activities (upcoming) with filtering |
| Your course enrollments with filtering |
| Your completed activity history with filtering by result, type, and date |
| Your earned badges and certifications with dates |
| View a member's profile, badges, and committees |
| See who's signed up for an activity |
Privacy
Your credentials are stored locally on your computer and are only sent to mountaineers.org to log in. They are never sent to any AI provider or third party.
Development
npm install
npm run dev # Run from TypeScript sources via tsx (no build step)
npm run check # Typecheck + lint
npm test # Run tests
npm run ci # Full CI: check + coverage + buildOther Mountaineering & Outdoors Tools
I climb, scramble, and hike a lot, and I keep building tools around it. If this one's useful to you, the others might be too:
mountaineers-assistant -- Chrome extension that syncs your mountaineers.org activity history and shows you stats, trends, and climbing partners you can't see on the site.
peakbagger-cli -- Command-line access to PeakBagger.com. Search peaks, check elevation and prominence, browse ascent stats. Outputs JSON for piping into other tools.
claude-mountaineering-skills -- Claude Code plugin that generates route beta reports by pulling conditions, forecasts, and trip reports from multiple mountaineering sites.
License
MIT
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dreamiurg/mountaineers-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server