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

credsmcp

v1.0.1

Published

Encrypted credential manager MCP server for AI coding tools. Securely store and serve API keys for Cloudflare, GitHub, Railway and more.

Readme

CredsMCP

Encrypted credential manager for AI coding tools.

One vault. Every AI tool. All your API keys — encrypted, organized, and instantly available.

What is CredsMCP?

CredsMCP is an MCP server that securely stores and serves your cloud API credentials. Instead of copy-pasting API keys every session, your AI tools call get_credentials("cloudflare", "work") and get exactly what they need.

  • AES-256-GCM encrypted vault at ~/.credsmcp/vault.json
  • Multiple profiles per service (work, personal, client projects)
  • 3 providers built-in: Cloudflare, GitHub, Railway
  • Extensible — add any provider in one file
  • Cross-platform — macOS, Windows, Linux

Quick Start

# Add to Claude Code
claude mcp add --transport stdio credsmcp -- npx credsmcp

# Add to Cursor / Windsurf / Claude Desktop — see full docs

Set your master password:

export CREDSMCP_PASSWORD="your-secure-password"

Then ask your AI tool to store credentials:

"Store my Cloudflare API key for the work account"

Integration

Claude Code CLI

claude mcp add --transport stdio --env CREDSMCP_PASSWORD=your-password credsmcp -- npx credsmcp

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS):

{
  "mcpServers": {
    "credsmcp": {
      "command": "npx",
      "args": ["credsmcp"],
      "env": { "CREDSMCP_PASSWORD": "your-password" }
    }
  }
}

Cursor IDE

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "credsmcp": {
      "command": "npx",
      "args": ["credsmcp"],
      "env": { "CREDSMCP_PASSWORD": "your-password" }
    }
  }
}

Windsurf IDE

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "credsmcp": {
      "command": "npx",
      "args": ["credsmcp"],
      "env": { "CREDSMCP_PASSWORD": "your-password" }
    }
  }
}

VS Code + Continue.dev

Create .continue/mcpServers/credsmcp.yaml:

name: credsmcp
command: npx
args:
  - credsmcp
env:
  CREDSMCP_PASSWORD: your-password

Tools

| Tool | Description | |------|-------------| | list_services | List supported providers and their fields | | list_profiles | List configured profiles by service | | get_credentials | Get credentials (redacted by default) | | set_credentials | Store credentials for a service + profile | | remove_credentials | Delete a profile | | switch_default | Change the default profile for a service | | verify_credentials | Test credentials via provider API | | export_env | Return credentials as KEY=VALUE env vars |

Security

  • Encryption: AES-256-GCM with authenticated encryption
  • Key derivation: scrypt (N=2^17, r=8, p=1) — memory-hard, GPU/ASIC resistant
  • Storage: ~/.credsmcp/vault.json with 0600 permissions
  • Atomic writes: temp file + rename prevents corruption
  • Secret redaction: API keys shown as xxxx...xxxx by default

Documentation

Full docs and integration guides: https://www.npmjs.com/package/credsmcp

License

MIT