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

@deloc/mcp

v0.1.20

Published

MCP server for deploying to Deloc from AI coding agents

Readme

@deloc/mcp

MCP server for Deloc — deploy static sites from AI coding agents.

Say "deploy this to Deloc" in Claude Code or Cursor and get a live URL back without leaving your editor.

Tools

| Tool | Description | |------|-------------| | setup_deloc | Sign in with Google or Microsoft. Shown when not yet authenticated. | | deploy | Build and deploy a static site. Returns a live URL. | | list_apps | List your published apps with URLs and status. | | get_app | Get detailed info about an app (bandwidth, expiry, size). | | disable_app | Take an app offline. | | enable_app | Re-enable a disabled app. | | delete_app | Permanently delete an app and its files. | | renew_app | Extend a free-tier app's expiry by 30 days. | | set_password | Set, change, or remove password protection on an app. | | get_account | Get current user info, tier, and usage limits. | | suggest_deploy_options | Analyze a project and suggest deployment options. |

Setup

Add this to your editor config — no token needed. The MCP server handles authentication on first use.

Claude Code — run this in your terminal:

claude mcp add deloc --scope user -- npx -y @deloc/mcp@latest

Cursor — add to .cursor/mcp.json in your project root:

{
  "mcpServers": {
    "deloc": {
      "command": "npx",
      "args": ["-y", "@deloc/mcp@latest"]
    }
  }
}

The first time you say "deploy this to Deloc", the MCP server opens your browser to sign in (or create an account). After that, your token is saved to ~/.deloc/config.json and all tools are available.

Usage

In Claude Code:

"Deploy this dashboard to Deloc so my team can see it"

In Cursor:

"Publish this to Deloc as 'Q3 Revenue Dashboard'"

The agent will call the deploy tool and return a live URL.

Environment variables

| Variable | Description | Default | |----------|-------------|---------| | DELOC_TOKEN | API token (optional — for CI/CD or pre-configured setups) | Read from ~/.deloc/config.json | | DELOC_API_URL | API endpoint | https://api.deloc.dev |

Token resolution order

  1. DELOC_TOKEN environment variable (set in MCP config)
  2. ~/.deloc/config.json (saved by setup_deloc or deloc login)
  3. Neither — the setup_deloc tool is shown for interactive authentication

License

MIT