npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

mountaineers-mcp

v1.6.0

Published

MCP server for The Mountaineers website (mountaineers.org)

Readme

Mountaineers MCP Server

CI npm

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.

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

  1. Download mountaineers-mcp-X.Y.Z.mcpb from the latest release
  2. Open Claude Desktop → Settings → Extensions → Install Extension
  3. Select the downloaded .mcpb file
  4. Enter your mountaineers.org credentials if you want account access (optional)

That's it -- no Node.js install required.

Requires Node.js 18+.

  1. Go to Settings > Developer > Edit Config
  2. Paste this and save:
{
  "mcpServers": {
    "mountaineers": {
      "command": "npx",
      "args": ["-y", "mountaineers-mcp"]
    }
  }
}
  1. 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-mcp

Or 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-mcp

Tools reference

Public (no login required)

| Tool | Description | |------|-------------| | search_activities | Search activities with filters (type, branch, difficulty, date, day of week) | | search_courses | Search courses, clinics, and seminars | | search_trip_reports | Search trip reports by text and activity type | | search_routes | Search routes and places with filters (activity type, difficulty, climbing category) | | get_activity | Get full activity details (leader notes, route, equipment) | | get_trip_report | Get trip report details (conditions, route info) | | get_route | Get route details (difficulty, elevation, directions, maps, related routes) | | get_course | Get course details (schedule, pricing, leaders, badges earned) |

Authenticated (login required)

| Tool | Description | |------|-------------| | whoami | Get your name, profile URL, and member slug | | get_my_activities | Your registered activities (upcoming) with filtering | | get_my_courses | Your course enrollments with filtering | | get_activity_history | Your completed activity history with filtering by result, type, and date | | get_my_badges | Your earned badges and certifications with dates | | get_member_profile | View a member's profile, badges, and committees | | get_activity_roster | 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          # Start with auto-reload
npm run check        # Typecheck + lint
npm test             # Run tests
npm run ci           # Full CI: check + coverage + build

License

MIT