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

@codespar/mcp-rd-station

v0.2.1

Published

MCP server for RD Station — contacts, events, funnels, deals, segmentations, lead scoring, webhooks

Downloads

139

Readme

@codespar/mcp-rd-station

MCP server for RD Station — marketing automation and CRM

npm License: MIT

Quick Start

Claude Desktop

Add to ~/.config/claude/claude_desktop_config.json:

{
  "mcpServers": {
    "rd-station": {
      "command": "npx",
      "args": ["-y", "@codespar/mcp-rd-station"],
      "env": {
        "RD_STATION_TOKEN": "your-token"
      }
    }
  }
}

Claude Code

claude mcp add rd-station -- npx @codespar/mcp-rd-station

Cursor / VS Code

Add to .cursor/mcp.json or .vscode/mcp.json:

{
  "servers": {
    "rd-station": {
      "command": "npx",
      "args": ["-y", "@codespar/mcp-rd-station"],
      "env": {
        "RD_STATION_TOKEN": "your-token"
      }
    }
  }
}

Tools (18)

| Tool | Purpose | |---|---| | create_contact | Create a contact in RD Station CRM | | update_contact | Update a contact by UUID | | upsert_contact | Upsert (create or update) a contact identified by email (Marketing API) | | get_contact | Get contact details by UUID or email | | list_contacts | List contacts with pagination | | delete_contact | Delete a contact by UUID | | create_event | Create a conversion event for a contact | | list_funnels | List all sales funnels | | get_funnel | Get funnel details with stages | | list_deal_stages | List deal stages of a pipeline (funnel) | | create_opportunity | Create a sales opportunity in a funnel | | update_deal | Update a deal/opportunity by ID | | get_deal | Get a deal/opportunity by ID | | list_deals | List deals with optional filters and pagination | | list_segmentations | List contact segmentations | | get_segmentation_contacts | List contacts inside a given segmentation | | update_lead_scoring | Mark a contact as lead, qualified lead, or opportunity (lead scoring) | | create_webhook | Subscribe a webhook to RD Station events (WEBHOOK.CONVERTED / WEBHOOK.MARKED_OPPORTUNITY) |

Authentication

RD Station uses a Bearer token for authentication.

Sandbox / Testing

RD Station provides an OAuth sandbox for testing. Use sandbox credentials during development.

Get your credentials

  1. Go to RD Station Developer Portal
  2. Create a developer account
  3. Register an OAuth application and obtain a token
  4. Set the RD_STATION_TOKEN environment variable

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | RD_STATION_TOKEN | Yes | Bearer token from RD Station |

Roadmap

v0.2 (planned)

  • list_deals — List deals in the CRM pipeline
  • create_deal — Create a new deal
  • update_deal — Update deal details or stage
  • list_activities — List activities for a contact or deal
  • create_task — Create a task assigned to a user

v0.3 (planned)

  • custom_fields — Manage custom fields for contacts and deals
  • automation_triggers — Trigger marketing automation flows

Want to contribute? Open a PR or request a tool.

Links

Enterprise

Need governance, budget limits, and audit trails for agent payments? CodeSpar Enterprise adds policy engine, payment routing, and compliance templates on top of these MCP servers.

License

MIT