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

pipedrive-mcp

v1.0.7

Published

MCP server for the Pipedrive CRM API

Downloads

69

Readme

Pipedrive MCP Server

This is a Model Context Protocol (MCP) server that provides read-only access to Pipedrive CRM data. The server exposes Pipedrive API functionality through MCP tools and prompts, allowing LLM applications like Claude or Github Copilot to interact with Pipedrive data.

Features

  • Read-only access to Pipedrive data
  • Dual API support (v1 and v2 endpoints)
  • Wide entity coverage: deals, persons, organizations, pipelines, activities, products, files, stages, notes, email threads
  • Includes all fields including custom fields
  • Predefined prompts for common CRM analysis tasks
  • Modular architecture with clean separation of concerns

Using with Claude

To use this server with Claude for Desktop:

  1. Configure Claude for Desktop by editing your claude_desktop_config.json:
{
  "mcpServers": {
    "pipedrive": {
      "command": "bunx",
      "args": ["pipedrive-mcp@latest"],
      "env": {
        "PIPEDRIVE_API_TOKEN": "<YOUR_API_TOKEN>"
      }
    }
  }
}
  1. Restart Claude for Desktop
  2. In the Claude application, you should now see the Pipedrive tools available

Available Tools

Core Entity Management

  • get-deals / get-deal / search-deals: Deal management with custom fields
  • get-persons / get-person / search-persons: Contact operations with custom fields
  • get-organizations / get-organization / search-organizations: Organization management with custom fields
  • get-pipelines / get-pipeline: Pipeline operations
  • get-stages / get-stage / get-pipeline-stages: Pipeline stage operations

Activities & Products (v2 API)

  • get-activities / get-activity: Activity operations with sorting options
  • get-activities-by-deal / get-activities-by-person / get-activities-by-organization: Entity-specific activities
  • get-activity-deal / get-activity-person / get-activity-organization: Get entities associated with activities
  • get-products / get-product / search-products: Product management
  • get-deal-products: Products associated with deals

Content & Communication

  • get-files / get-file: File management operations
  • get-notes / get-note: Notes management
  • get-mail-threads / get-mail-thread / get-mail-thread-messages / get-mail-message: Email operations

Search & Discovery

  • search-leads: Search leads by term
  • search-all: Search across all item types (deals, persons, organizations, products, files, activities, leads)
  • get-recents: Recently accessed items

Available Prompts

  • list-all-deals: List all deals in Pipedrive
  • list-all-persons: List all persons in Pipedrive
  • list-all-pipelines: List all pipelines in Pipedrive
  • analyze-deals: Analyze deals by stage
  • analyze-contacts: Analyze contacts by organization
  • analyze-leads: Analyze leads by status
  • compare-pipelines: Compare different pipelines and their stages
  • find-high-value-deals: Find high-value deals

License

MIT