🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@tryparsley/mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tryparsley/mcp-server

Parsley MCP Server - buyer intent signals for AI assistants

latest
Source
npmnpm
Version
0.2.1
Version published
Maintainers
1
Created
Source

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

VariableRequiredDescription
PARSLEY_API_KEYYesYour Parsley API key (pk_live_...)
PARSLEY_BASE_URLNoAPI base URL (defaults to https://www.parsley.id)

Tools (8)

Every account

ToolDescription
get_analytics_summaryDashboard overview - profile views, conversations, lead quality breakdown, top topics, conversion rate

With conversation balance

ToolDescription
get_conversationsList recent conversations with filtering by lead quality, intent signal, date range
get_conversation_detailFull conversation detail - MEDDIC signals with evidence quotes, engagement, enrichment, discovery field values
get_hot_leadsHot and warm leads with MEDDIC evidence - the morning briefing tool
search_by_intentFind conversations by MEDDIC signals, intent score, or topic
get_knowledge_gapsUnanswered chatbot questions grouped by topic and frequency
get_lead_enrichmentExtracted company, role, timeline, and budget context from conversations
get_meddic_summaryAggregate MEDDIC signal distribution - per-signal counts, top combinations

Prompts (5)

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

PromptCross-MCPDescription
morning_briefingYesHot leads summary with follow-up priorities. Cross-references CRM if connected.
stale_leads_checkYesQualified leads with no recent CRM activity. Requires a CRM MCP.
coaching_gapsNoMEDDIC gaps with suggested follow-up questions for each lead.
content_opportunitiesNoKnowledge gaps turned into blog post, chatbot doc, and FAQ suggestions.
deal_prepOptionalPre-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.

Access

  • get_analytics_summary runs on every account
  • The other 7 tools and all 5 prompts require conversation balance - every new account gets 10 free conversations, then it is 25¢ each

See parsley.id/pricing.

Agencies

Every tool accepts an optional client parameter: pass a managed client's org id to query that client's data instead of your own. The API key owner must hold an admin-equivalent membership in the client org - validated server-side, so a key can never reach data its owner couldn't see in the dashboard.

Development

git clone https://github.com/peterjduffy/parsley-mcp.git
cd parsley-mcp
npm install
npm run build
PARSLEY_API_KEY=pk_live_xxx node dist/index.js

License

MIT

Keywords

mcp

FAQs

Package last updated on 05 Aug 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts