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

@launchthatbot/mcp

v0.3.0

Published

LaunchThatBot MCP server for Cursor IDE — manage deployments, agents, and infrastructure from your editor

Readme

@launchthatbot/mcp-server

MCP (Model Context Protocol) server for LaunchThatBot — manage your OpenClaw agent deployments, infrastructure, and credentials directly from Cursor IDE.

Quick Start

1. Get an API Key

Go to LaunchThatBot Dashboard → Settings → API Keys and create a new key.

2. Add to Cursor

Add this to your .cursor/mcp.json:

{
  "mcpServers": {
    "launchthatbot": {
      "command": "npx",
      "args": ["-y", "@launchthatbot/mcp-server"],
      "env": {
        "LAUNCHTHATBOT_API_KEY": "ltb_sk_..."
      }
    }
  }
}

3. Use It

Once configured, you can ask Cursor things like:

  • "List my LaunchThatBot servers"
  • "Show me the status of my agents"
  • "Create a new deployment on Hetzner"
  • "What's my dashboard overview?"

Available Tools

Servers

  • list_servers — List all VPS servers with status and region
  • get_server — Get details for a specific server
  • set_server_attachment — Attach or detach a server

Deployments

  • list_deployments — List deployments for a server
  • get_deployment — Get deployment details
  • create_deployment — Provision a new VPS with OpenClaw
  • redeploy — Reinstall OpenClaw on a server
  • get_job_status — Check provisioning job progress

Agents

  • list_agents — List all agent configurations
  • get_agent — Get agent details
  • create_agent — Create a new agent config
  • update_agent — Update an agent config
  • delete_agent — Delete an agent config
  • discover_agents — Find unregistered agents on a server
  • sync_agent — Push agent config to its server

Health & Events

  • get_agent_health — Check OpenClaw instance health
  • get_agent_events — Get recent instance events

Dashboard

  • get_overview — Server count, agent count, health breakdown
  • list_convex_connections — List Convex cloud connections
  • list_discord_connections — List Discord bot connections

Audit

  • list_audit_events — Get server audit trail

Credentials

  • list_credentials — List VPS provider credentials (masked)
  • add_credential — Add a new provider API token

Import

  • import_handshake — Validate one-time import token and fetch RSA public key
  • import_push — Push exported config and encrypted secrets payload

Environment Variables

| Variable | Required | Description | |---|---|---| | LAUNCHTHATBOT_API_KEY | Yes | Your API key (starts with ltb_sk_) | | LAUNCHTHATBOT_API_URL | No | Override the API endpoint (for development) |

Links