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

prospi-mcp

v0.3.2

Published

MCP server for Prospi AI - manage campaigns, sequences and leads via Claude/Cursor

Readme

prospi-mcp

MCP (Model Context Protocol) server for Prospi AI. Exposes Prospi's public API as tools you can use directly inside Claude, Cursor, or any MCP-compatible client - manage cold email campaigns, sequences, and leads via natural language.

Installation

Claude Desktop (recommended)

claude mcp add prospi -- npx -y prospi-mcp

Then set your API key in ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or the equivalent config on your OS:

{
  "mcpServers": {
    "prospi": {
      "command": "npx",
      "args": ["-y", "prospi-mcp"],
      "env": {
        "PROSPI_API_KEY": "your-api-key-here"
      }
    }
  }
}

Cursor / other MCP clients

Add to your MCP config:

{
  "mcpServers": {
    "prospi": {
      "command": "npx",
      "args": ["-y", "prospi-mcp"],
      "env": {
        "PROSPI_API_KEY": "your-api-key-here"
      }
    }
  }
}

Getting your API key

  1. Log in to app.prospi.ai
  2. Go to Settings -> API
  3. Generate or copy your API key
  4. Set it as PROSPI_API_KEY in your MCP client config

Available tools

Campaigns

| Tool | Description | |------|-------------| | list_campaigns | List all campaigns in your account | | get_campaign | Get details of a specific campaign | | create_campaign | Create a new campaign | | delete_campaign | Delete a campaign | | update_campaign_status | Activate or deactivate a campaign | | rename_campaign | Rename a campaign | | duplicate_campaign | Duplicate an existing campaign | | update_campaign_settings | Update daily limit, open/click tracking | | update_campaign_schedule | Set sending time window and days | | import_leads | Import leads (email, name, company) into a campaign | | get_campaign_sequence | Get the email sequence for a campaign | | get_statistics | Get overall stats for a date range | | get_statistics_by_day | Get per-day stats for a date range |

Sequences

| Tool | Description | |------|-------------| | preview_email | Preview a rendered email from a sequence step/variant | | toggle_variant_status | Enable or disable a specific A/B variant | | update_sequence | Rewrite the full sequence (steps, subjects, messages) |

Example prompts

  • "Show me all my active campaigns"
  • "Create a campaign called 'US SaaS Q2' in the America/New_York timezone"
  • "Import these 3 leads into campaign abc123: ..."
  • "What are my email stats for last week?"
  • "Update the sequence for campaign xyz - change the subject of step 1 to ..."

License

MIT