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

@codespar/mcp-take-blip

v0.2.1

Published

MCP server for Take Blip — chatbots, messaging, contacts, broadcasts

Readme

@codespar/mcp-take-blip

MCP server for Take Blip — chatbot and messaging platform

npm License: MIT

Quick Start

Claude Desktop

Add to ~/.config/claude/claude_desktop_config.json:

{
  "mcpServers": {
    "take-blip": {
      "command": "npx",
      "args": ["-y", "@codespar/mcp-take-blip"],
      "env": {
        "TAKE_BLIP_BOT_ID": "your-bot-id",
        "TAKE_BLIP_ACCESS_KEY": "your-access-key"
      }
    }
  }
}

Claude Code

claude mcp add take-blip -- npx @codespar/mcp-take-blip

Cursor / VS Code

Add to .cursor/mcp.json or .vscode/mcp.json:

{
  "servers": {
    "take-blip": {
      "command": "npx",
      "args": ["-y", "@codespar/mcp-take-blip"],
      "env": {
        "TAKE_BLIP_BOT_ID": "your-bot-id",
        "TAKE_BLIP_ACCESS_KEY": "your-access-key"
      }
    }
  }
}

Tools (18)

| Tool | Purpose | |---|---| | send_message | Send a message to a contact via Take Blip | | get_contacts | List contacts in Take Blip | | create_contact | Create a contact in Take Blip | | get_threads | Get message threads (recent conversations) | | send_notification | Send a notification message to a contact | | get_analytics | Get chatbot analytics and metrics | | create_broadcast | Create a broadcast distribution list and send messages | | get_chatbot_flow | Get chatbot flow/builder configuration | | update_contact | Merge/update fields on an existing contact | | delete_contact | Delete a contact by identity | | get_contact | Get a single contact by identity | | get_thread | Get the message thread between the bot and a specific identity | | create_ticket | Open a support ticket / human handoff for a contact | | close_ticket | Close an open support ticket | | list_tickets | List tickets, optionally filtering by status | | track_event | Track a custom analytics event in the bot event tracker | | set_bot_resource | Set a bot resource value (used as bot variables / state via /resources bucket) | | get_bot_resource | Get a bot resource value by name (variable / state) |

Authentication

Take Blip uses a Key-based auth header computed from the bot ID and access key.

Sandbox / Testing

Take Blip offers a free account for testing. Create a bot to get started.

Get your credentials

  1. Go to Take Blip
  2. Create a free account and a chatbot
  3. Navigate to bot settings to get the bot identifier and access key
  4. Set the environment variables

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | TAKE_BLIP_BOT_ID | Yes | Bot identifier | | TAKE_BLIP_ACCESS_KEY | Yes | Bot access key |

Roadmap

v0.2 (planned)

  • update_contact — Update contact information
  • delete_contact — Delete a contact
  • get_message_history — Get message history for a contact
  • create_scheduled_message — Schedule a message for later delivery
  • get_team_metrics — Get team performance metrics

v0.3 (planned)

  • flow_management — Create and manage conversational flows
  • ai_model_integration — Integrate custom AI models into flows

Want to contribute? Open a PR or request a tool.

Links

Enterprise

Need governance, budget limits, and audit trails for agent payments? CodeSpar Enterprise adds policy engine, payment routing, and compliance templates on top of these MCP servers.

License

MIT