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

deplo-mcp

v0.1.0

Published

deplo.sh MCP server — use deplo.sh from Claude, Cursor, and any MCP-compatible agent host

Readme

deplo-mcp

Give Claude, Cursor, and any MCP-compatible AI the ability to deploy files, sites, and APIs to a public URL.

Why does your agent need a deployment primitive?

AI agents can research, write code, generate reports, and build dashboards — but they have no way to publish the output. There's no built-in "deploy" tool. The result sits in a chat window or a local file.

deplo.sh fills that gap. It's a deployment platform built for agents — not for Git workflows. One tool call, one API key, one live URL.

The MCP server is the zero-config way to connect deplo.sh to any MCP-compatible host:

  • Claude Desktop — deploy directly from a conversation
  • Cursor — build and deploy without leaving your editor
  • OpenClaw — integrate into any MCP-compatible agent framework
  • Any MCP host — standard protocol, universal compatibility

Why deplo.sh?

| | deplo.sh | Manual alternative | |---|---|---| | Deploy | One tool call | Create repo → push → configure hosting → wait for build | | Config | Zero | vercel.json, netlify.toml, build settings | | Agent-callable | Yes — native MCP tools | No — requires browser, CLI, and manual steps | | Time to URL | < 5 seconds | Minutes to hours | | Git required | No | Yes |

Quick start

Claude Desktop

Add to ~/.config/claude/claude_desktop_config.json:

{
  "mcpServers": {
    "deplo": {
      "url": "https://mcp.deplo.sh",
      "env": {
        "DEPLO_KEY": "sk_live_xxxxxxxxxxxxxxxx"
      }
    }
  }
}

Cursor

Add to your Cursor MCP settings:

{
  "deplo": {
    "url": "https://mcp.deplo.sh",
    "env": {
      "DEPLO_KEY": "sk_live_xxxxxxxxxxxxxxxx"
    }
  }
}

Get your API key at deplo.sh/dashboard/tokens.

Available tools

| Tool | Description | |---|---| | deploy | Deploy files and get a public URL. Auto-creates project. | | list_projects | List all projects in the workspace. | | get_project | Get details of a project by ID or slug. | | list_deployments | List all deployment versions for a project. | | promote_deployment | Make an older deployment the live version (rollback). | | delete_project | Delete a project and all its deployments. |

Example prompts

"Generate a summary of our Q1 sales data, format it as an HTML report, and deploy it to deplo.sh."

"Build an interactive dashboard from this CSV and deploy it."

"Roll back the latest deployment of weekly-report to the previous version."

Links

License

MIT