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

@launchpath-ai/mcp-server

v1.2.0

Published

LaunchPath MCP Server — manage AI agents, knowledge bases, deployments, clients, and campaigns from Claude Code

Readme

@launchpath-ai/mcp-server

The official Model Context Protocol server for LaunchPath. Manage AI agents, knowledge bases, deployments, clients, and campaigns from Claude Code, Cursor, or any MCP-compatible tool.

Quick Start

Claude Code (recommended — includes skills)

Install the LaunchPath plugin to get MCP tools and slash command skills:

claude plugin marketplace add launchpath-ai/claude-plugin
claude plugin install launchpath@launchpath-ai

This gives you everything — the MCP server starts automatically and you get skills like /launchpath:deploy-agent, /launchpath:agent-report, and more.

Claude Code (MCP server only)

If you only want the MCP tools without skills:

claude mcp add -e LAUNCHPATH_API_KEY=lp_key_your_key_here launchpath -- npx -y @launchpath-ai/mcp-server

Replace lp_key_your_key_here with your API key.

Cursor / Windsurf / Other MCP Clients

Add to your MCP config (e.g., .cursor/mcp.json):

{
  "mcpServers": {
    "launchpath": {
      "command": "npx",
      "args": ["-y", "@launchpath-ai/mcp-server"],
      "env": {
        "LAUNCHPATH_API_KEY": "lp_key_your_key_here"
      }
    }
  }
}

Get an API Key

  1. Go to www.trylaunchpath.com/dashboard/mcp
  2. Click Create API Key
  3. Copy the key (it's only shown once)

MCP access requires the Growth plan or higher.

What You Can Do

MCP Tools (50+)

| Toolset | Tools | Description | |---------|-------|-------------| | Core | 3 | List agents, get agent details, test chat | | Agent Management | 5 | Create, update, clone, delete agents | | Knowledge | 8 | Scrape websites, manage FAQs, generate Q&A | | Deployment | 4 | Widget config, embed code, API channels, list channels | | Clients | 4 | Manage client accounts | | Campaigns | 4 | Link agents to clients via campaigns | | WhatsApp | 8 | Templates, broadcasts, drip sequences | | Analytics | 8 | Conversations, channel health, performance metrics | | Tools Config | 5 | Manage agent integrations and webhooks | | Portal | 2 | Client portal invites and branding | | Integrations | 5 | Browse, connect, and poll 900+ app integrations |

Skills (Claude Code plugin only)

When installed via the plugin, you also get guided workflows:

| Skill | Description | |-------|-------------| | /launchpath:deploy-agent | Create, train, and deploy an agent end-to-end | | /launchpath:setup-client | Set up a client account with agents and deployment | | /launchpath:agent-report | Generate a status report across all agents | | /launchpath:whatsapp-campaign | Build and launch a WhatsApp campaign |

Plus an internal guide that helps Claude use LaunchPath tools effectively.

API Channel

Create standalone API endpoints for custom integrations:

# 1. Create an API channel (via MCP tool: create_api_channel)
# Returns: endpoint URL + bearer token

# 2. Send messages
curl -X POST https://www.trylaunchpath.com/api/channels/{agentId}/chat \
  -H "Authorization: Bearer lp_ch_your_token" \
  -H "Content-Type: application/json" \
  -d '{"userMessage": "Hello!", "sessionId": "user-123"}'

# Response: SSE stream with text-delta, tool-call, done events

Features: SSE streaming, stateful/stateless modes, lead capture, file uploads, HITL support.

Configuration

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | LAUNCHPATH_API_KEY | Yes | — | Your API key from the dashboard | | LAUNCHPATH_BASE_URL | No | https://www.trylaunchpath.com | API base URL |

Requirements

  • Node.js 18 or higher
  • An MCP client that supports stdio transport
  • LaunchPath account on Growth plan or higher

Links

License

MIT