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

@limeadelabs/launchpad-mcp

v1.2.6

Published

LaunchPad MCP server for Claude Code — AI-native project management integration

Readme

@limeadelabs/launchpad-mcp

LaunchPad MCP server for Claude Code — manage tasks, pull project context, and track work directly from your coding environment.

Quick Start

# Install via Claude Code CLI
claude mcp add launchpad -- npx @limeadelabs/launchpad-mcp

Or add manually to ~/.claude/claude_desktop_config.json:

{
  "mcpServers": {
    "launchpad": {
      "command": "npx",
      "args": ["@limeadelabs/launchpad-mcp"],
      "env": {
        "LAUNCHPAD_API_KEY": "your-api-key",
        "LAUNCHPAD_URL": "https://launchpad.limeadelabs.co"
      }
    }
  }
}

Environment Variables

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | LAUNCHPAD_API_KEY | Yes | — | API key from LaunchPad workspace settings | | LAUNCHPAD_URL | No | https://launchpad.limeadelabs.co | LaunchPad instance URL | | LAUNCHPAD_TIMEOUT_MS | No | 10000 | Request timeout in milliseconds |

Tools

| Tool | Description | |------|-------------| | lp_bootstrap | One-call onboarding — workspace, projects, tasks, conventions | | lp_list_projects | List projects with optional stage filter | | lp_get_project | Get project details + agent_instructions | | lp_list_tasks | List tasks with filters (project, status, priority, label, assignee) | | lp_get_task | Get full task context — description, comments, links | | lp_create_task | Create a new task | | lp_update_task | Update task status/fields (enforces workflow transitions) | | lp_claim_task | Claim a task before working on it | | lp_release_task | Release a claimed task | | lp_heartbeat | Keep a claim alive (expires after 30 min without heartbeat) | | lp_add_comment | Post a comment on a task | | lp_log_time | Track time spent on a task | | lp_generate_prompt | Generate a build-ready spec for a task | | lp_list_pages | List spec/doc pages for a project | | lp_get_page | Get a page's full content | | lp_get_workflow | Get valid workflow states and transitions | | lp_context_list | List context entries with optional filters (project, type, search) | | lp_context_get | Fetch a context entry's full content by slug or ID | | lp_context_package | Get assembled context package for a task (org + project entries, specs, comments) | | lp_context_update | Update a context entry's content (requires write access) |

Resources

  • launchpad://project/{id}/context — Project instructions, conventions, and page summaries
  • launchpad://task/{id}/spec — Full generated task spec
  • context://entries — Browse all active context entries
  • context://entries/{slug} — Read a specific context entry

Resources vs Tools

Resources are for passive browsing in the Claude Code resource panel. Tools are for active agent invocation during conversation. Both access the same underlying context registry API.

Prompts

  • lp_start_task — Guided workflow: find → claim → get spec → start building
  • lp_submit_task — Guided workflow: comment → update status → release claim

Example Usage

In Claude Code:

  • "List my LaunchPad tasks"
  • "Claim task #500 and show me the spec"
  • "What's the status of the LaunchPad project?"

Troubleshooting

"LAUNCHPAD_API_KEY environment variable is required" Set your API key in the MCP server config. Get one from LaunchPad workspace settings.

"Invalid LAUNCHPAD_API_KEY" Your API key is expired or incorrect. Generate a new one from LaunchPad.

"Cannot reach LaunchPad" Check your LAUNCHPAD_URL and network connectivity.

"Request timed out" LaunchPad may be slow. Increase LAUNCHPAD_TIMEOUT_MS or try again.

Development

npm install
npm run build
npm test

License

MIT