Back to Agents

Connect your AI agent to RedReplier

Set up the RedReplier MCP server with Claude Code, Claude Desktop, Cursor, or any MCP client, then call the tools to search threads, score relevance, and inspect matches.

Before you start

Recommended

Claude Code & Cursor

Add RedReplier as an HTTP MCP server. Paste the config into your client's MCP settings and replace the placeholder with your API key.

MCP config

{
  "mcpServers": {
    "redreplier": {
      "type": "http",
      "url": "https://mcp.redreplier.com/mcp",
      "headers": {
        "Authorization": "Bearer redreplier_your_api_key_here"
      }
    }
  }
}

Create an API key in API tokens. Keys start with redreplier_.

Claude Code CLI

claude mcp add --transport http --scope project --header "Authorization: Bearer redreplier_your_api_key_here" -- redreplier https://mcp.redreplier.com/mcp

Prefer the CLI? Run this one-liner to add RedReplier to the current project.

Claude Desktop

Claude Desktop connects through mcp-remote. Add this to your claude_desktop_config.json and restart the app.

claude_desktop_config.json

{
  "mcpServers": {
    "redreplier": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://mcp.redreplier.com/mcp",
        "--header",
        "Authorization: Bearer redreplier_your_api_key_here"
      ]
    }
  }
}

Other MCP clients

Any MCP-compatible client can connect with these details.

Endpoint

https://mcp.redreplier.com/mcp

Auth header

Authorization: Bearer redreplier_your_api_key_here

Transport

Streamable HTTP

For clients that only support stdio, wrap the endpoint with mcp-remote as shown in the Claude Desktop example above.

Agent skill

Install the packaged skill to configure the MCP server and tool instructions in one command.

npx skills add redreplier/agent

Read the source and instructions on GitHub. View on GitHub

Tool reference

The tools your agent can call once RedReplier is connected.

ToolWhat it doesParameters
list_keywordsList the keywords RedReplier is tracking for you.None
add_keywordStart tracking a new keyword, optionally scoped to specific subreddits.keyword, subreddits?
search_threadsFind Reddit threads matching your keywords, filtered by subreddit, score, and recency.keyword?, subreddits?, minScore?, since?, limit?, offset?
get_threadFetch the full details and comments of a single thread.id
get_relevance_scoreReturn the relevance score for a thread so you can prioritize which opportunities to review.threadId
list_subredditsList the subreddits available for tracking and filtering.None

Managing access

Create and revoke API keys anytime from API tokens. Each key carries your account's permissions, so treat it like a password and rotate it if it leaks.

Ready to connect your agent?

Create a free account, generate an API key, and have your agent working Reddit in minutes.