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

@honecrm/mcp-server

v0.3.0

Published

MCP server for Hone CRM - enables AI agents to interact with your CRM

Downloads

88

Readme

@honecrm/mcp-server

MCP (Model Context Protocol) server for Hone CRM. Enables AI agents and LLM clients (Claude, GPT, etc.) to interact with your CRM data through a standardized tool interface.

Quick start

Run directly with npx — no install required:

HONECRM_API_KEY=hone_xxxx npx @honecrm/mcp-server

Or install globally:

npm install -g @honecrm/mcp-server
HONECRM_API_KEY=hone_xxxx honecrm-mcp

Client configuration

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "honecrm": {
      "command": "npx",
      "args": ["@honecrm/mcp-server"],
      "env": {
        "HONECRM_API_KEY": "hone_xxxx"
      }
    }
  }
}

Claude Code

claude mcp add honecrm -- npx @honecrm/mcp-server

Then set the environment variable in your shell or .env:

export HONECRM_API_KEY=hone_xxxx

Cursor

Add to .cursor/mcp.json in your project root:

{
  "mcpServers": {
    "honecrm": {
      "command": "npx",
      "args": ["@honecrm/mcp-server"],
      "env": {
        "HONECRM_API_KEY": "hone_xxxx"
      }
    }
  }
}

Environment variables

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | HONECRM_API_KEY | Yes | — | Your Hone CRM API key | | HONECRM_BASE_URL | No | https://api.honecrm.com/v1 | API base URL |

Available tools

Deals

| Tool | Description | |------|-------------| | list_deals | List deals with optional filters (stage, status, search, teamId) | | get_deal | Get a single deal by ID | | create_deal | Create a new deal with name, value, contact, and stage | | update_deal | Update an existing deal's fields | | delete_deal | Delete a deal by ID |

Contacts

| Tool | Description | |------|-------------| | list_contacts | List contacts with optional filters (search, companyId, teamId) | | get_contact | Get a single contact by ID | | create_contact | Create a new contact with name, email, and optional fields |

Companies

| Tool | Description | |------|-------------| | list_companies | List companies with optional filters (search, industry, domain) | | get_company | Get a single company by ID | | create_company | Create a new company with name and optional fields |

Search

| Tool | Description | |------|-------------| | search | Full-text search across deals, contacts, companies, and notes |

Protocol

  • Transport: JSON-RPC over stdio
  • Protocol version: 2024-11-05
  • Authentication: API key via environment variable (passed to Hone CRM REST API)

How it works

The MCP server acts as a bridge between LLM clients and the Hone CRM API:

LLM Client  ←→  MCP Server (stdio)  ←→  Hone CRM REST API
(Claude)         @honecrm/mcp-server      api.honecrm.com

All data access goes through the @honecrm/sdk HTTP client — the MCP server never accesses the database directly. API key scopes and rate limits are enforced server-side.

Requirements

  • Node.js >= 18

License

MIT