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

@tryparsley/mcp-server

v0.1.1

Published

Parsley MCP Server - buyer intent signals for AI assistants

Downloads

225

Readme

Parsley MCP Server

A Model Context Protocol server that exposes buyer intent signals, MEDDIC qualification data, and lead intelligence from your Parsley account to AI assistants like Claude Desktop and Cursor.

What it does

Ask your AI assistant natural questions about your leads:

  • "Which leads went hot this week?"
  • "Show me the MEDDIC gaps for recent conversations"
  • "Any high-intent visitors that nobody's followed up on?"
  • "What are people asking that my chatbot can't answer?"

If you also have a CRM MCP connected (Attio, HubSpot, Salesforce, etc.), Claude can cross-reference automatically - finding hot leads with no CRM follow-up, prepping you for calls with full context from both systems.

Setup

1. Get your API key

Generate an API key at parsley.id/hub/api-keys. You need a Parsley account with the chatbot enabled.

2. Configure Claude Desktop

Add to your Claude Desktop config file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "parsley": {
      "command": "npx",
      "args": ["-y", "@tryparsley/mcp-server"],
      "env": {
        "PARSLEY_API_KEY": "pk_live_your_key_here"
      }
    }
  }
}

3. Configure Cursor

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

{
  "mcpServers": {
    "parsley": {
      "command": "npx",
      "args": ["-y", "@tryparsley/mcp-server"],
      "env": {
        "PARSLEY_API_KEY": "pk_live_your_key_here"
      }
    }
  }
}

Environment variables

| Variable | Required | Description | | ------------------ | -------- | --------------------------------------------------- | | PARSLEY_API_KEY | Yes | Your Parsley API key (pk_live_...) | | PARSLEY_BASE_URL | No | API base URL (defaults to https://www.parsley.id) |

Tools (8)

Free tier

| Tool | Description | | ----------------------- | ------------------------------------------------------------------------------------------------------ | | get_analytics_summary | Dashboard overview - profile views, conversations, lead quality breakdown, top topics, conversion rate |

Business tier

| Tool | Description | | ------------------------- | -------------------------------------------------------------------------------------- | | get_conversations | List recent conversations with filtering by lead quality, intent signal, date range | | get_conversation_detail | Full conversation detail - MEDDIC signals with evidence quotes, engagement, enrichment | | get_hot_leads | Hot and warm leads with MEDDIC evidence - the morning briefing tool | | search_by_intent | Find conversations by MEDDIC signals, intent score, or topic | | get_knowledge_gaps | Unanswered chatbot questions grouped by topic and frequency | | get_lead_enrichment | Extracted company, role, timeline, and budget context from conversations | | get_meddic_summary | Aggregate MEDDIC signal distribution - per-signal counts, top combinations |

Prompts (5)

Predefined workflow templates that appear in Claude's prompt picker.

| Prompt | Cross-MCP | Description | | ----------------------- | --------- | ------------------------------------------------------------------------------- | | morning_briefing | Yes | Hot leads summary with follow-up priorities. Cross-references CRM if connected. | | stale_leads_check | Yes | Qualified leads with no recent CRM activity. Requires a CRM MCP. | | coaching_gaps | No | MEDDIC gaps with suggested follow-up questions for each lead. | | content_opportunities | No | Knowledge gaps turned into blog post, chatbot doc, and FAQ suggestions. | | deal_prep | Optional | Pre-call briefing on a company/person. Pulls CRM context if available. |

Cross-MCP workflows

Prompts marked "Cross-MCP" work with any CRM that has an MCP server. Connect both Parsley and your CRM's MCP to Claude, and the prompts will orchestrate across both automatically. No extra configuration needed.

Tested with: Attio, HubSpot, Salesforce, Copper, Pipedrive.

Tier gating

  • Free plan: get_analytics_summary tool only
  • Business plan: All 8 tools + all 5 prompts

Upgrade at parsley.id/pricing.

Development

cd mcp-server
npm install
npm run build
PARSLEY_API_KEY=pk_live_xxx node dist/index.js

License

MIT