Skip to main content
Glama
jakemoshel

discord-support-mcp

by jakemoshel

discord-support-mcp

An MCP server that exposes Discord support tickets as tools for AI agents. Built for servers that manage tickets with Ticket Tool (which has no public API): it reads the ticket channels directly through the Discord bot API.

Tools

Tool

What it does

list_open_tickets

Lists channels in the configured ticket category, oldest first

read_ticket

Returns recent message history of a ticket

reply_to_ticket

Posts a message into a ticket as the bot

rename_ticket

Renames a ticket channel

close_ticket

Locks + renames a ticket (closed- prefix)

list_members

Username substring lookup (respects PII_REDACT)

Related MCP server: Discord MCP

Compliance / self-hosting

If agents touching user-identifying information must be self-hosted, run this server on your own infrastructure next to your self-hosted model and set PII_REDACT=true. All message content is then stripped of emails, phone numbers, mentions and snowflake IDs before it reaches any upstream (cloud) agent. Only the sanitized layer should be exposed beyond the host.

Setup

  1. Create a bot at https://discord.com/developers/applications

    • Enable Message Content Intent and Server Members Intent.

    • Invite with scopes bot and permissions: View Channels, Read Message History, Send Messages, Manage Channels, Manage Roles (for close).

  2. Find the category ID Ticket Tool puts tickets in (right-click the category in Discord with developer mode on → Copy Channel ID).

  3. Configure:

cp .env.example .env   # fill in values
npm install
npm run build
  1. Wire into an MCP client (e.g. Claude Desktop config):

{
  "mcpServers": {
    "discord-support": {
      "command": "node",
      "args": ["/absolute/path/to/discord-support-mcp/dist/index.js"],
      "env": {
        "DISCORD_TOKEN": "...",
        "GUILD_ID": "...",
        "TICKET_CATEGORY_ID": "...",
        "PII_REDACT": "true"
      }
    }
  }
}

Notes

  • close_ticket is a safe archive (lock + rename). Actual transcript/deletion stays with Ticket Tool's own /close so your transcripts channel keeps working; the agent can also just call Ticket Tool's close command flow manually for now.

  • Discord rate limits apply; history reads are capped at 100 messages per call.

A
license - permissive license
-
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    -
    quality
    B
    maintenance
    Enables comprehensive interaction with Discord servers to manage guilds, channels, messages, and members through an agentic workflow. It supports RAG capabilities, rate-limited message operations, and includes a React-based dashboard for monitoring and configuration.
    Last updated
    1
    MIT
  • A
    license
    -
    quality
    B
    maintenance
    Enables AI clients to manage Discord servers through natural language, offering tools for guilds, channels, messages, roles, members, webhooks, invites, and automations. Includes a conversational agent that responds to @mentions in Discord.
    Last updated
    8
    Apache 2.0
  • A
    license
    -
    quality
    D
    maintenance
    Enables AI agents to interact with Discord through the REST API and real-time events, supporting message management, user info, channel operations, and more with security controls.
    Last updated
    10
    1
    MIT

View all related MCP servers

Related MCP Connectors

  • Voice and chat for AI agents — Discord, Teams, Meet, Slack, Zoom, Telegram, WhatsApp, NC Talk, SIP

  • Give AI agents access to form submissions — read, search, update, and process file attachments.

  • An MCP server that integrates with Discord to provide AI-powered features.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/jakemoshel/discord-support-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server