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

@bitatlas/mcp-server

v1.1.0

Published

BitAtlas MCP Server — Zero-Knowledge Cloud Drive for Humans and Agents

Readme

BitAtlas MCP Server 🤖

Zero-Knowledge Cloud Drive persistence for AI agents.

This Model Context Protocol (MCP) server allows AI agents to securely interact with the BitAtlas vault. All files are encrypted client-side, meaning the server never sees the plaintext data.

Features

  • Search & List Vault: Agents can browse encrypted file metadata.
  • Secure Retrieval: Agents can fetch encrypted blobs and decryption metadata.
  • Zero-Knowledge: The agent performs decryption locally using the user's provided master key.
  • Hand a file to a human: bitatlas_share_file mints a public link the host cannot read — the decryption key rides in the URL fragment, never reaching BitAtlas. The canonical "agent produces an artifact → human opens a link" handoff, without giving up zero knowledge.

Tools

| Tool | Purpose | |---|---| | bitatlas_vault_status | Vault health, file count, storage usage | | bitatlas_list_files | List file metadata (filter by folder/category/search) | | bitatlas_search | Search files by name | | bitatlas_get_file | Download + decrypt a file's content | | bitatlas_upload_file | Encrypt a local file client-side and upload it | | bitatlas_delete_file | Delete a file | | bitatlas_create_folder | Create a folder | | bitatlas_share_file | Create a public, zero-knowledge share link (/s/<id>#k=…) to hand a file to a human. ⚠️ Anyone with the link can read the file. | | bitatlas_list_shares | List your share links with expiry, download count, and status | | bitatlas_revoke_share | Revoke a share link (stops future downloads) |

Installation

For AI Agents (Claude Desktop, OpenClaw, etc.)

Add this to your MCP settings:

{
  "mcpServers": {
    "bitatlas": {
      "command": "npx",
      "args": ["-y", "@bitatlas/mcp-server"],
      "env": {
        "BITATLAS_API_KEY": "your-api-key",
        "BITATLAS_MASTER_KEY": "your-derived-master-key"
      }
    }
  }
}

x402 Wallet Mode (No Account Required)

Instead of an API key, agents can pay per request using a crypto wallet with USDC on Base:

{
  "mcpServers": {
    "bitatlas": {
      "command": "npx",
      "args": ["-y", "@bitatlas/mcp-server"],
      "env": {
        "BITATLAS_WALLET_PRIVATE_KEY": "0xabc...",
        "BITATLAS_MASTER_KEY": "your-64-hex-char-master-key"
      }
    }
  }
}

No signup. No API key. The agent pays per request in USDC and gets full vault access. Files include 30 days of storage and can be renewed.

Priority: If both BITATLAS_API_KEY and BITATLAS_WALLET_PRIVATE_KEY are set, the API key is preferred (free within quota).

Environment Variables

| Variable | Required | Description | |---|---|---| | BITATLAS_API_KEY | One of API key or wallet | Personal access token from bitatlas.com | | BITATLAS_WALLET_PRIVATE_KEY | One of API key or wallet | EVM private key for x402 payments | | BITATLAS_MASTER_KEY | For encrypt/decrypt | 64-char hex string (256-bit master key) | | BITATLAS_API_URL | No | Defaults to https://api.bitatlas.com | | BITATLAS_WEB_URL | No | Web origin used to build share links. Defaults to https://www.bitatlas.com |

Development

npm install
npm run start

License

MIT