1. Conduid
  2. Developer Tools
  3. discord-server
MCP server · Developer Tools

discord-server

A Discord MCP server for AI assistants — Bun-first, TypeScript, open-source

Unclaimed devtools
39Low

Scored 4 months ago · breakdown

About discord-server

discord-server is an MCP server published by git+ngoctranfire in the Developer Tools category: a Discord MCP server for AI assistants — Bun-first, TypeScript, open-source. It has been installed 0 times through Conduid.

Install

Install
npx @ncodelife/discord-mcp-server
Claude Code
claude mcp add discord-mcp-server-gitngoct -- npx -y @ncodelife/discord-mcp-server
npx
npx -y @ncodelife/discord-mcp-server

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about discord-server

Powered by Claude · Grounded in docs

I know everything about discord-server. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

README


What is this?

discord-mcp-server lets any MCP-compatible AI client (Claude Desktop, Cursor, Windsurf, etc.) interact with Discord — send messages, manage channels, create webhooks, assign roles, and more.

Built with Bun, FastMCP, and discord.js.

Features

Category Tools
🏠 Server Info list_servers, get_server_info
📢 Channels list_channels, find_channel, create_text_channel, create_voice_channel, delete_channel, create_category, list_categories, move_channel
💬 Messages send_message, read_messages, edit_message, delete_message, add_reaction, remove_reaction
🔗 Webhooks list_webhooks, create_webhook, delete_webhook, send_webhook_message, edit_webhook
🎭 Roles list_roles, create_role, edit_role, delete_role, assign_role, remove_role
🧵 Threads list_threads, create_thread, reply_to_thread, get_thread

31 tools covering the most common Discord operations. Forum posts are supported via create_thread.

Prerequisites

  1. Bun (v1.0.0+) — Install Bun
  2. Discord Bot TokenCreate one here

Creating a Discord Bot

  1. Go to the Discord Developer Portal
  2. Click New Application → give it a name
  3. Go to Bot → click Reset Token → copy the token
  4. Under Privileged Gateway Intents, enable:
    • ✅ Message Content Intent
    • ✅ Server Members Intent
  5. Go to OAuth2URL Generator
    • Scopes: bot
    • Bot Permissions: Administrator (or cherry-pick permissions)
  6. Copy the generated URL and open it to invite the bot to your server

Quick Start

Option 1: npx (recommended)

npx @ncodelife/discord-mcp-server --token YOUR_BOT_TOKEN

Option 2: Install globally

npm install -g @ncodelife/discord-mcp-server
discord-mcp-server --token YOUR_BOT_TOKEN

Option 3: Docker

docker build -t discord-mcp-server .
docker run -e DISCORD_TOKEN=YOUR_BOT_TOKEN discord-mcp-server

MCP Client Configuration

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "discord": {
      "command": "npx",
      "args": ["@ncodelife/discord-mcp-server", "--token", "YOUR_BOT_TOKEN"]
    }
  }
}

Cursor / Windsurf

Add to your MCP settings:

{
  "discord": {
    "command": "npx",
    "args": ["@ncodelife/discord-mcp-server", "--token", "YOUR_BOT_TOKEN"]
  }
}

Smithery

Smithery Badge

Install via Smithery for automatic configuration.

Configuration

Option CLI Flag Env Variable Default
Bot Token --token DISCORD_TOKEN required
Default Guild ID --guild-id DISCORD_GUILD_ID
Transport --transport MCP_TRANSPORT stdio
HTTP Port --port MCP_PORT 8080

Using a .env file

DISCORD_TOKEN=your-bot-token-here
DISCORD_GUILD_ID=your-server-id

Transport Modes

stdio (default)

Standard I/O transport — used by Claude Desktop, Cursor, and most MCP clients.

discord-mcp-server --token YOUR_TOKEN

HTTP Stream

For web-based integrations and remote access:

discord-mcp-server --token YOUR_TOKEN --transport http --port 8080

Note on build targets: The npm package is built with --target node so npx works everywhere. The Docker image uses --target bun for native Bun performance. Both are fully functional.

Development

# Clone the repo
git clone https://github.com/ngoctranfire/discord-mcp-server.git
cd discord-mcp-server

# Install dependencies
bun install

# Run in development
bun run dev

# Type-check
bun run typecheck

# Lint
bun run lint

# Test with MCP Inspector
bun run inspect

Architecture

src/
├── index.ts          # Entry point — FastMCP server setup
├── config.ts         # CLI args + env var merging
├── discord.ts        # Discord.js client factory
├── utils.ts          # Shared utilities (error handling, formatting)
└── tools/
    ├── server-info.ts  # Server listing & details
    ├── channels.ts     # Channel CRUD operations
    ├── messages.ts     # Message send/read/edit/delete + reactions
    ├── webhooks.ts     # Webhook management
    ├── roles.ts        # Role CRUD + assignment
    └── threads.ts      # Thread & forum operations

Contributing

See CONTRIBUTING.md for guidelines on setup, development, and submitting pull requests.

License

MIT

README mirrored from the source repository 4 months ago. The original is authoritative.

Questions

About discord-server

How do I install discord-server?

Run npx @ncodelife/discord-mcp-server, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is discord-server safe to use with an AI agent?

Its trust score is 39 out of 100 (low). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is discord-server still maintained?

Conduid hasn't recorded a commit date for this repository yet. Check the repository directly for recent activity.