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

@dropreply/mcp

v1.0.0

Published

MCP server for DropReply — publish replies on Reddit & X from AI agents

Readme

DropReply MCP Server

MCP (Model Context Protocol) server that lets AI agents publish replies on Reddit and Twitter/X through DropReply.

Installation

Run directly with npx:

npx dropreply-mcp

Or install globally:

npm install -g dropreply-mcp

Configuration

Set your API key as an environment variable:

export DROPREPLY_API_KEY=your_api_key_here

Optionally override the base URL (defaults to https://api.dropreply.com):

export DROPREPLY_BASE_URL=https://api.dropreply.com

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "dropreply": {
      "command": "npx",
      "args": ["-y", "dropreply-mcp"],
      "env": {
        "DROPREPLY_API_KEY": "your_api_key_here"
      }
    }
  }
}

Claude Code

claude mcp add dropreply -- npx -y dropreply-mcp

Then set the env var DROPREPLY_API_KEY in your shell before launching Claude Code.

Available Tools

| Tool | Description | |------|-------------| | publish_reply | Publish a reply/comment on Reddit or Twitter/X using an aged managed account | | check_reply_status | Check the status of a previously published reply | | upvote | Upvote a Reddit post/comment or like a tweet | | check_usage | Check current API usage and remaining credits | | list_replies | List recent replies with their status and health |

publish_reply

Publishes a reply to a Reddit post or tweet.

  • platform (required): reddit or twitter
  • target_url (required): URL of the post/tweet to reply to
  • content (required): Reply text, 10-2000 characters, no URLs allowed
  • schedule_at (optional): ISO 8601 datetime to schedule publishing (Growth/Scale plans only, up to 30 days ahead)

check_reply_status

Checks the current status of a reply by its ID.

  • reply_id (required): The ID returned by publish_reply

upvote

Upvotes a Reddit post/comment or likes a tweet.

  • platform (required): reddit or twitter
  • target_url (required): URL of the target

check_usage

Returns current plan info and credit usage. No parameters.

list_replies

Lists recent replies with optional filters.

  • platform (optional): Filter by reddit or twitter
  • status (optional): Filter by status (e.g. queued, scheduled, published, failed)
  • limit (optional): Number of results (default: 10)