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

mcp-streak-crm

v1.0.1

Published

MCP Server for Streak CRM - Full API integration with 45 tools for pipelines, boxes, contacts, organizations, tasks, and more

Readme

Streak CRM MCP Server

A Model Context Protocol server for Streak CRM. Enables AI assistants like Claude to interact with your Streak data — manage pipelines, deals, contacts, tasks, and more, directly from natural language.

Features

45 tools covering the full Streak API:

| Category | Tools | Operations | |----------|-------|------------| | Users | 2 | Get current user, get user by key | | Teams | 2 | List teams, get team details | | Pipelines | 5 | List, get, create, update, delete | | Boxes (Deals) | 7 | List, get, batch get, create, update, update fields, delete | | Stages | 4 | List, create, update, delete | | Fields | 4 | List, create, update, delete | | Contacts | 4 | Get, create, update, delete | | Organizations | 4 | Get, create/find, update, delete | | Search | 2 | Global search, search boxes by name | | Tasks | 4 | List in box, create, update, delete | | Comments | 2 | Create, delete | | Files | 2 | List in box, get file details | | Threads | 3 | List in box, link email, unlink email | | Meetings | 2 | List in box, create meeting note | | Snippets | 3 | Create, update, delete email templates | | Newsfeed | 2 | Pipeline activity, box activity |

Installation

Claude Desktop

Add this to your claude_desktop_config.json:

{
  "mcpServers": {
    "streak-crm": {
      "command": "npx",
      "args": ["-y", "mcp-streak-crm"],
      "env": {
        "STREAK_API_KEY": "your_api_key_here"
      }
    }
  }
}

Claude Code

claude mcp add --transport stdio -e STREAK_API_KEY=your_api_key_here streak-crm -- npx -y mcp-streak-crm

Cursor

Add this to .cursor/mcp.json:

{
  "mcpServers": {
    "streak-crm": {
      "command": "npx",
      "args": ["-y", "mcp-streak-crm"],
      "env": {
        "STREAK_API_KEY": "your_api_key_here"
      }
    }
  }
}

Getting your Streak API Key

  1. Open Gmail with the Streak extension installed
  2. Click the Streak icon in the right sidebar
  3. Go to Integrations
  4. Under "Streak API", click Create New Key
  5. Copy the key and use it as STREAK_API_KEY

More info: Streak API docs

Usage Examples

Once connected, you can ask your AI assistant:

  • "Show me all my pipelines in Streak"
  • "Create a new box 'Acme Corp Deal' in the Sales pipeline"
  • "Move the box to the Negotiation stage"
  • "Add a task 'Follow up call' to the box"
  • "Search all contacts with email @acme.com"
  • "Show me recent activity on the pipeline"

Development

git clone https://github.com/emanuelegandini/mcp-streak-crm.git
cd mcp-streak-crm
npm install
npm run build

Test with MCP Inspector:

STREAK_API_KEY=your_key npm run inspector

API Rate Limits

Streak imposes a limit of 10 API calls per second. The server does not currently implement rate limiting — space out requests if you hit limits.

License

MIT