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

@agasalhem/mcp-prosp

v1.0.0

Published

MCP server for Prosp.ai – 15 tools for LinkedIn outbound automation (stdio & HTTP transports)

Readme

@agasalhem/mcp-prosp

MCP server for Prosp.ai — exposes 15 tools for LinkedIn outbound automation to any MCP-compatible client (Claude Code, Claude Desktop, n8n, etc.).

Supports stdio transport (Claude Code / Desktop) and http transport (n8n, Make, etc.).

Quick start — Claude Code (npx, no install needed)

Add to your project's .mcp.json:

{
  "mcpServers": {
    "prosp": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@agasalhem/mcp-prosp"],
      "env": {
        "PROSP_API_KEY": "sua_chave_aqui"
      }
    }
  }
}

Claude Code will download and run the server automatically on first use. No npm install needed.

Quick start — Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "prosp": {
      "command": "npx",
      "args": ["-y", "@agasalhem/mcp-prosp"],
      "env": {
        "PROSP_API_KEY": "sua_chave_aqui"
      }
    }
  }
}

Quick start — global install

npm install -g @agasalhem/mcp-prosp

Then in .mcp.json:

{
  "mcpServers": {
    "prosp": {
      "type": "stdio",
      "command": "mcp-prosp",
      "env": {
        "PROSP_API_KEY": "sua_chave_aqui"
      }
    }
  }
}

Requirements

  • Node.js >= 20
  • Prosp.ai API key — get it at Settings → API in the Prosp.ai dashboard

Available tools

| Tool | Endpoint | Type | |---|---|---| | leads_add | POST /api/v1/leads | write | | leads_send_message | POST /api/v1/leads/send-message | write | | leads_send_voice | POST /api/v1/leads/send-voice | write | | leads_get_conversation | GET /api/v1/leads/conversation | read | | leads_add_contact | POST /api/v1/leads/contact | write | | leads_add_to_campaign | POST /api/v1/leads/campaign | write | | leads_remove_from_campaign | POST /api/v1/leads/campaign/delete | destructive | | leads_delete_contact | POST /api/v1/leads/contact/delete | destructive | | campaigns_analytics | GET /api/v1/campaigns/analytics | read | | campaigns_lists | GET /api/v1/campaigns/lists | read | | campaigns_leads | GET /api/v1/campaigns/leads | read | | campaigns_lead_stage | GET /api/v1/campaigns/lead-stage | read | | campaigns_start | POST /api/v1/campaigns/start | write | | campaigns_stop | POST /api/v1/campaigns/stop | destructive | | campaigns_status | GET /api/v1/campaigns/status | read |

HTTP transport (n8n, Make, etc.)

PROSP_API_KEY=sua_chave MCP_TRANSPORT=http npx @agasalhem/mcp-prosp
# Server at http://localhost:3000/mcp

Optional Bearer auth and custom port:

PROSP_API_KEY=sua_chave MCP_TRANSPORT=http MCP_AUTH_TOKEN=meu_token PROSP_MCP_PORT=8080 npx @agasalhem/mcp-prosp

Environment variables

| Variable | Required | Default | Description | |---|---|---|---| | PROSP_API_KEY | yes | — | Prosp.ai API key | | MCP_TRANSPORT | no | stdio | stdio or http | | PROSP_MCP_PORT | no | 3000 | HTTP port (http mode only) | | MCP_AUTH_TOKEN | no | — | Bearer token for HTTP auth |

Development

git clone https://github.com/agasalhem/mcp-prosp.git
cd mcp-prosp
npm install
npm run dev      # tsx watch (no build)
npm test         # vitest
npm run inspect  # MCP Inspector