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

crisp-mcp-server

v1.0.0

Published

MCP server for Crisp live chat — search conversations, read messages, look up contacts

Downloads

13

Readme

Crisp MCP Server

An MCP (Model Context Protocol) server that exposes Crisp live chat data as tools for Claude and other MCP clients. Search conversations, read chat transcripts, look up contacts — all from your AI assistant.

Prerequisites

You need a Crisp Plugin token to authenticate with the Crisp API.

  1. Go to Crisp MarketplaceNew Plugin (or use an existing one)
  2. Copy the Plugin Identifier and Plugin Key
  3. Required token scopes: website:conversation:read, website:people:read

You also need your Website ID — find it in your Crisp dashboard URL: app.crisp.chat/website/<website_id>/

Installation

Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "crisp": {
      "command": "npx",
      "args": ["-y", "crisp-mcp-server"],
      "env": {
        "CRISP_IDENTIFIER": "your-plugin-identifier",
        "CRISP_KEY": "your-plugin-key",
        "CRISP_WEBSITE_ID": "your-website-id"
      }
    }
  }
}

Claude Code

claude mcp add crisp -- npx -y crisp-mcp-server

Then set the environment variables CRISP_IDENTIFIER, CRISP_KEY, and CRISP_WEBSITE_ID.

Available Tools

| Tool | Description | |------|-------------| | search_conversations | Search conversations by query (merchant name, topic, error message). Supports status and date filters. | | list_conversations | List recent conversations with optional filters (resolved/unresolved, unread, date range). | | get_conversation | Get full details of a conversation — visitor info, tags, assignment, status. | | get_messages | Read the chat transcript for a conversation. Supports pagination for long histories. | | get_conversation_routing | See which operator is assigned to a conversation. | | get_conversation_meta | Get visitor metadata — nickname, email, device, location, segments. | | list_people | List or search contact profiles — email, name, company info. | | list_websites | List configured websites with IDs and labels (only when multiple websites are configured). |

Multiple Websites

If you have more than one Crisp website, pass them comma-separated with optional labels:

{
  "CRISP_WEBSITE_ID": "abc123:App One,def456:App Two"
}

When multiple websites are configured:

  • A list_websites tool becomes available so the LLM can see which websites exist
  • Every tool accepts an optional website_id parameter
  • If website_id is omitted, the first website is used as the default

Labels are shown to the LLM in tool descriptions, so use recognizable names.

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | CRISP_IDENTIFIER | Yes | Plugin token identifier | | CRISP_KEY | Yes | Plugin token key | | CRISP_WEBSITE_ID | Yes | Website ID(s) — single ID, or comma-separated id:label pairs for multiple websites |

Development

npm install
npm run build    # Compile TypeScript
npm run dev      # Watch mode
npm start        # Run the server

Test with the MCP Inspector:

npx @modelcontextprotocol/inspector node dist/index.js

License

MIT