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

headlight-mcp-server

v0.2.0

Published

MCP server for head·light CRM - connect Claude to your contacts, touchpoints, and reminders

Readme

headlight-mcp-server

MCP server for head·light CRM - connect Claude to your contacts, touchpoints, and reminders.

Setup

  1. Generate an API key in head·light Settings → Integrations → AI Integration
  2. Add to your Claude Desktop config (claude_desktop_config.json):
{
  "mcpServers": {
    "headlight": {
      "command": "npx",
      "args": ["-y", "headlight-mcp-server"],
      "env": {
        "HEADLIGHT_API_KEY": "your-key-here"
      }
    }
  }
}
  1. Restart Claude Desktop

Available Tools

| Tool | Description | |------|-------------| | get_today_summary | Quick overview of today's due items | | search_people | Find contacts by name, journey, or status | | get_person | Full contact details | | add_note | Add a note to a contact | | list_touchpoints | View due/overdue tasks | | complete_touchpoint | Mark a touchpoint done | | list_reminders | View personal reminders | | create_reminder | Create a reminder | | complete_reminder | Mark a reminder done | | list_journeys | See available journeys | | get_journey | Journey details and steps | | assign_journey | Put a contact on a journey |

Example Prompts

  • "What's on my head·light agenda today?"
  • "Find all my contacts with overdue touchpoints"
  • "Add a note to John Smith: Had a great call, interested in the Oak Street listing"
  • "Complete the touchpoint for Sarah about the welcome email"
  • "Remind me to follow up on the Johnson contract tomorrow"

Troubleshooting

Check if MCP server is running

ps aux | grep -i mcp | grep -v grep

You should see headlight-mcp processes.

Verify API key is valid

curl -s -H "Authorization: Bearer YOUR_API_KEY" https://headlight.marcihoffman.homes/api/mcp/verify

Should return {"valid":true}.

Common issues

| Issue | Cause | Fix | |-------|-------|-----| | Could not resolve host | Wrong API URL | Default is headlight.marcihoffman.homes. Override with HEADLIGHT_API_URL env var | | Invalid API key | Key doesn't exist or wrong tenant | Generate a new key in Settings → Integrations → AI Integration | | Tools not appearing | Claude Desktop not restarted | Restart Claude Desktop after config changes | | Old version cached | npx cache | Run npx -y headlight-mcp-server@latest or clear npm cache |

Using a custom API URL

For local development or custom deployments, add HEADLIGHT_API_URL:

{
  "mcpServers": {
    "headlight": {
      "command": "npx",
      "args": ["-y", "headlight-mcp-server"],
      "env": {
        "HEADLIGHT_API_KEY": "your-key-here",
        "HEADLIGHT_API_URL": "http://localhost:3000"
      }
    }
  }
}

Development

# Install dependencies
pnpm install

# Build
pnpm build

# Test locally
HEADLIGHT_API_KEY=your-key HEADLIGHT_API_URL=http://localhost:3000 node dist/index.js

Publishing

cd packages/mcp-server
# Update version in package.json
pnpm build
npm publish --access public

Note: Will prompt for security key authentication. Users get updates automatically on next Claude Desktop restart (npx fetches latest).