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

signals-sortlist-mcp

v1.0.0

Published

MCP server for the Signals lead intelligence API. Gives AI agents (Claude, Cursor, etc.) tools to manage businesses, subscriptions, leads, and webhooks.

Downloads

9

Readme

Signals MCP Server

npm License: MIT

MCP server for the Signals lead intelligence API — gives AI agents tools to discover leads, manage subscriptions, and automate sales workflows.


Quick Setup

Claude Desktop

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

{
  "mcpServers": {
    "signals": {
      "command": "npx",
      "args": ["-y", "signals-sortlist-mcp"],
      "env": {
        "SIGNALS_API_KEY": "your_api_key"
      }
    }
  }
}

Cursor

Add to your Cursor MCP settings (.cursor/mcp.json):

{
  "mcpServers": {
    "signals": {
      "command": "npx",
      "args": ["-y", "signals-sortlist-mcp"],
      "env": {
        "SIGNALS_API_KEY": "your_api_key"
      }
    }
  }
}

Claude Code

claude mcp add signals -- npx -y signals-sortlist-mcp -e SIGNALS_API_KEY=your_api_key

Get your API key from Settings > API Keys in your Signals dashboard.


Tools

The server exposes 19 tools covering the full Signals API:

Signals (catalog)

| Tool | Description | |---|---| | list_signals | List all available signal types | | get_signal | Get details of a specific signal by slug |

Businesses

| Tool | Description | |---|---| | list_businesses | List all businesses in your team | | get_business | Get a business with its Ideal Customer Profile | | create_business | Create a business (auto-analyze from URL or manual) | | update_business | Update a business and/or its ICP |

Subscriptions

| Tool | Description | |---|---| | list_subscriptions | List subscriptions for a business | | get_subscription | Get subscription details and stats | | create_subscription | Subscribe to a signal for a business | | update_subscription | Update subscription name or config | | pause_subscription | Pause lead collection | | resume_subscription | Resume a paused subscription | | delete_subscription | Delete a subscription permanently |

Leads

| Tool | Description | |---|---| | list_leads | List leads for a business (paginated) | | get_lead | Get full lead details | | delete_lead | Delete a lead |

Webhooks

| Tool | Description | |---|---| | list_webhooks | List webhook endpoints | | create_webhook | Register a webhook URL | | delete_webhook | Remove a webhook endpoint |


Environment Variables

| Variable | Required | Description | |---|---|---| | SIGNALS_API_KEY | Yes | Your Signals API key | | SIGNALS_API_URL | No | Override the API base URL (defaults to https://api.meetsignals.ai) |


Development

git clone https://github.com/sortlist/signals-mcp.git
cd signals-mcp
npm install
npm run dev    # Watch mode
npm run build  # Production build

Project Structure

src/
  index.ts          # MCP server entry point (stdio transport)
  api.ts            # SignalsAPI HTTP client
  tools/
    signals.ts      # list_signals, get_signal
    businesses.ts   # Business CRUD + ICP management
    subscriptions.ts # Subscription lifecycle
    leads.ts        # Lead retrieval and deletion
    webhooks.ts     # Webhook management

Links


License

MIT