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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@iflow-mcp/instantly-mcp

v1.2.0

Published

Multi-transport MCP server for Instantly.ai with stdio, SSE, and DXT support. Features bulletproof pagination, one-click installation, and comprehensive email automation tools.

Readme

Instantly MCP Server

A Model Context Protocol (MCP) server for Instantly.ai email campaign management.

Quick Start

Installation

npm install
npm run build

Configuration

export INSTANTLY_API_KEY="your-api-key-here"
npm start

Server available at: http://localhost:3000/mcp

Claude Desktop Setup (Local)

{
  "mcpServers": {
    "instantly": {
      "command": "node",
      "args": ["/path/to/instantly-mcp/dist/index.js"],
      "env": {
        "INSTANTLY_API_KEY": "your-api-key-here"
      }
    }
  }
}

Remote HTTP Endpoint

Production Endpoint

URL: https://mcp.instantly.ai/mcp

Authentication Methods

1. URL-based Authentication

https://mcp.instantly.ai/mcp/YOUR_API_KEY

2. Header Authentication

URL: https://mcp.instantly.ai/mcp
Header: Authorization: YOUR_API_KEY

Note: Bearer token prefix is not required

Usage with MCP Clients

Configure your MCP client to use the remote endpoint:

{
  "mcpServers": {
    "instantly": {
      "url": "https://mcp.instantly.ai/mcp",
      "headers": {
        "Authorization": "your-api-key-here"
      }
    }
  }
}

Available Tools (36 Total)

Campaign Management (6 tools)

  • create_campaign - Create email campaigns with bulletproof timezone validation
  • list_campaigns - List campaigns with filtering
  • get_campaign - Get campaign details
  • update_campaign - Update campaign settings
  • activate_campaign - Start campaigns
  • pause_campaign - Pause campaigns

Analytics (4 tools)

  • get_campaign_analytics - Campaign performance metrics
  • get_daily_campaign_analytics - Daily analytics with date filtering
  • get_warmup_analytics - Email warmup analytics
  • test_account_vitals - Test account connectivity

Lead Management (8 tools)

  • create_lead - Add leads to campaigns
  • list_leads - List leads with filtering
  • get_lead - Get lead details
  • update_lead - Update lead information
  • delete_lead - Delete leads (⚠️ destructive)
  • create_lead_list - Create lead lists
  • list_lead_lists - List all lead lists
  • update_lead_list - Update lead list settings
  • get_verification_stats_for_lead_list - Get email verification stats for a lead list
  • add_leads_to_campaign_or_list_bulk - Bulk add leads to campaigns or lists
  • move_leads_to_campaign_or_list - Move leads between campaigns or lists

Email Operations (5 tools)

  • list_emails - List emails with filtering
  • get_email - Get email details
  • reply_to_email - Reply to emails (⚠️ sends real emails)
  • verify_email - Verify email deliverability
  • count_unread_emails - Count unread emails

Account Management (11 tools)

  • list_accounts - List email accounts
  • create_account - Create email accounts with IMAP/SMTP
  • update_account - Update account settings
  • get_account_details - Get detailed account info
  • get_account_info - Get account status
  • pause_account - Pause accounts
  • resume_account - Resume accounts
  • delete_account - Delete accounts (⚠️ destructive)
  • enable_warmup - Enable email warmup
  • disable_warmup - Disable email warmup
  • test_account_vitals - Test account connectivity

Authentication

Environment Variable

export INSTANTLY_API_KEY="your-key"

URL Authentication

https://server.com/mcp/your-key

Header Authentication

Authorization: Bearer your-key

Features

  • Streamable HTTP Transport - Remote MCP server at https://mcp.instantly.ai/mcp
  • Bulletproof Timezone System - 26 verified working timezones with intelligent fallbacks
  • Production Ready - Rate limiting, error handling, pagination
  • Instantly.ai API v2 - Full compatibility with latest API
  • Dual Authentication - URL-based and header-based API key authentication
  • Dual Transport - STDIO and HTTP streaming support

License

MIT