MCP Discord Agent Comm MCP Server

An MCP server enabling async communication between AI agents and users via Discord - perfect for long-running tasks requiring remote interaction

Local serverstdioGo

What is the MCP Discord Agent Comm MCP server?

An MCP server enabling async communication between AI agents and users via Discord - perfect for long-running tasks requiring remote interaction. The mcp discord agent comm mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 3 defined tools rather than through you.

What it actually does

An MCP (Model Context Protocol) server that enables async communication between AI agents and users via Discord. Perfect for long-running AI tasks where you need remote interaction capabilities.

  • 💬 Unified Communication - Single tool for all Discord interactions
  • 📢 Send Notifications - Agent sends updates without waiting for response
  • 🔄 Request User Input - Agent asks questions and waits for replies
  • Async Communication - Perfect for long-running tasks requiring remote interaction

Its toolset

Everything the assistant can do here goes through one of these:

  • Notifications — Direct message to channel (when expect_reply is false or omitted)
  • Timeouts — Users must reply to messages (not just type in channel) or click reactions
  • discord_message — Send a message to Discord, optionally waiting for a response

Adding it to your client

mcp-discord-agent-comm on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.

Configuration

You will need 2 environment variables: DISCORD_BOT_TOKEN, DISCORD_CHANNEL_ID. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

When to reach for it

This sits in the team communication group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. MCP Discord Agent Comm's toolset — Notifications, Timeouts, discord_message — is a fair guide to whether it matches your workflow. It is maintained by EugenEistrach; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the mcp discord agent comm mcp server does with a few real requests.

Available tools

ToolWhat it does
NotificationsDirect message to channel (when expect_reply is false or omitted)
TimeoutsUsers must reply to messages (not just type in channel) or click reactions
discord_messageSend a message to Discord, optionally waiting for a response.

How to install the MCP Discord Agent Comm MCP server

{
  "mcpServers": {
    "discord-agent-comm": {
      "command": "npx",
      "args": ["mcp-discord-agent-comm"],
      "env": {
        "DISCORD_BOT_TOKEN": "your-bot-token-here",
        "DISCORD_CHANNEL_ID": "your-channel-id-here"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
DISCORD_BOT_TOKENCredential the server authenticates with.Yes
DISCORD_CHANNEL_IDConfiguration value read at startup.Optional

Example prompts to try

  • Use MCP Discord Agent Comm to Notifications.
  • Use MCP Discord Agent Comm to Timeouts.
  • Use MCP Discord Agent Comm to discord message.

Frequently asked questions

It connects MCP Discord Agent Comm to MCP-compatible AI assistants such as Claude and Cursor, exposing 3 tools (Notifications, Timeouts, discord_message) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP Discord Agent Comm directly.