Sign In

@dropreply/mcp

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dropreply/mcp

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

latest
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

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

ToolDescription
publish_replyPublish a reply/comment on Reddit or Twitter/X using an aged managed account
check_reply_statusCheck the status of a previously published reply
upvoteUpvote a Reddit post/comment or like a tweet
check_usageCheck current API usage and remaining credits
list_repliesList 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)

Keywords

mcp

FAQs

Package last updated on 23 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts