.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/saseq/discord-mcp
home/mcp-servers/saseq/discord-mcp
saseq avatar

discord-mcp

bysaseq· 1 MCP server

Stars

424

Forks

91

Category

Agent Meta & Communication

View on GitHub

TL;DR

A Model Context Protocol (MCP) server for the Discord API using (JDA), designed to integrate Discord bots with MCP-compatible applications such as Claude, ChatGPT etc. It allows AI assistants to interact with D

How to install discord-mcp?

saseq/discord-mcp
$git clone https://github.com/saseq/discord-mcp

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install discord-mcp by running `git clone https://github.com/saseq/discord-mcp`, then use it for the current task and follow its documentation at https://github.com/saseq/discord-mcp.

Files · 1

View on GitHub
README.md
1<div align="center">
2 <img src="assets/img/Discord_MCP_full_logo.svg" width="60%" alt="DeepSeek-V3" />
3</div>
4<hr>
5<div align="center" style="line-height: 1;">
6 <a href="https://github.com/modelcontextprotocol/servers" target="_blank" style="margin: 2px;">
7 <img alt="MCP Server" src="https://badge.mcpx.dev?type=server" style="display: inline-block; vertical-align: middle;"/>
8 </a>
9 <a href="https://discord.gg/5Uvxe5jteM" target="_blank" style="margin: 2px;">
10 <img alt="Discord" src="https://img.shields.io/discord/936242526120194108?color=7389D8&label&logo=discord&logoColor=ffffff" style="display: inline-block; vertical-align: middle;"/>
11 </a>
12 <a href="https://github.com/SaseQ/discord-mcp/blob/main/LICENSE" target="_blank" style="margin: 2px;">
13 <img alt="MIT License" src="https://img.shields.io/github/license/SaseQ/discord-mcp" style="display: inline-block; vertical-align: middle;"/>
14 </a>
15</div>
16 
17 
18## 📖 Description
19 
20A [Model Context Protocol (MCP)](https://modelcontextprotocol.io/introduction) server for the Discord API using [(JDA)](https://jda.wiki/),
21designed to integrate Discord bots with MCP-compatible applications such as Claude, ChatGPT etc. It allows AI assistants to interact with
22Discord by managing channels, sending messages, and retrieving server information. Ideal for building powerful Discord automation and AI-driven workflows.
23 
24 
25## 🔬 Installation
26 
27### ► 🐳 Docker Installation (Recommended)
28 
29> [!NOTE]
30> Docker installation is required. Full instructions can be found on [docker.com](https://www.docker.com/products/docker-desktop/).
31 
32#### 1) Set local env variables
33```bash
34export DISCORD_TOKEN="YOUR_DISCORD_BOT_TOKEN"
35export DISCORD_GUILD_ID="OPTIONAL_DEFAULT_SERVER_ID"
36export SPRING_PROFILES_ACTIVE=http
37```
38 
39> [!IMPORTANT]
40> Instructions for creating a Discord bot and retrieving its token can be found [here](https://discordjs.guide/legacy/preparations/app-setup).
41 
42> [!TIP]
43> The `DISCORD_GUILD_ID` env variable is optional.
44>
45> When provided, it sets a default Discord server ID so any tool that accepts a `guildId` parameter can omit it.
46 
47#### 2) Run the Docker container
48```bash
49docker run -d -i \
50 --name discord-mcp \
51 --restart unless-stopped \
52 -p 8085:8085 \
53 -e SPRING_PROFILES_ACTIVE \
54 -e DISCORD_TOKEN \
55 -e DISCORD_GUILD_ID \
56 saseq/discord-mcp:latest
57```
58 
59Default MCP endpoint URL (HTTP profile): `http://localhost:8085/mcp`
60 
61<details>
62 <summary style="font-size: 1.35em; font-weight: bold;">
63 🐋 Docker Compose Installation
64 </summary>
65 
66#### 1) Clone the repository
67```bash
68git clone https://github.com/SaseQ/discord-mcp
69```
70 
71#### 2) Go to the project directory
72```bash
73cd discord-mcp
74```
75 
76#### 3) Create local runtime env
77```bash
78cat > .env <<EOF
79SPRING_PROFILES_ACTIVE=http
80DISCORD_TOKEN=<YOUR_DISCORD_BOT_TOKEN>
81DISCORD_GUILD_ID=<OPTIONAL_DEFAULT_SERVER_ID>
82EOF
83```
84 
85#### 4) Start one shared MCP server container
86```bash
87docker compose up -d --build
88```
89 
90#### 5) Verify
91```bash
92docker ps --filter name=discord-mcp
93curl -fsS http://localhost:8085/actuator/health
94```
95 
96> [!TIP]
97> You do not need to set `LOGGING_PATTERN_CONSOLE` manually.
98> Logging is configured automatically for both `http` and legacy `stdio` modes.
99 
100Default MCP endpoint URL (HTTP profile): `http://localhost:8085/mcp`
101 
102Health endpoint (Actuator): `http://localhost:8085/actuator/health`
103 
104</details>
105 
106<details>
107 <summary style="font-size: 1.35em; font-weight: bold;">
108 🔧 Manual Installation
109 </summary>
110 
111#### 1) Clone the repository
112```bash
113git clone https://github.com/SaseQ/discord-mcp
114```
115 
116#### 2) Build the project
117 
118> NOTE: Maven installation is required to use the mvn command. Full instructions can be found [here](https://www.baeldung.com/install-maven-on-windows-linux-mac).
119 
120```bash
121cd discord-mcp
122mvn clean package # The jar file will be available in the /target directory
123```
124 
125#### 3) Configure AI client
126Run the JAR as a long-running server:
127 
128```bash
129DISCORD_TOKEN=<YOUR_DISCORD_

Preview

saseq/discord-mcpsaseq/discord-mcp
Reposaseq/discord-mcp
TypeMCP Servers
CategoryAgent Meta & Communication
UpdatedApr 2026
LicenseMIT
First seenJul 27, 2026

Tags

MCPaiclaude

Related

6 picks
Type
  1. cdeust avatarcortexScientifically-grounded persistent memory for Claude — local-first, hybrid retrieval, 72 references.MCP ServersJul 20262.7k68
  2. samanhappy avatarmcphubA hub server for mcp serversMCP ServersJul 20262.7k2.3k
  3. loonghao avatarwecom-bot-mcp-serverWeCom Bot MCP Server - A Python server for WeCom (WeChat Work) bot following the Model Context Protocol (MCP)MCP ServersJul 20262.5k98
  4. toolprint avatarhypertool-mcpDynamically expose tools from proxied servers based on an Agent PersonaMCP ServersOct 20252.0k155
  5. arindam200 avatarreddit-mcpReddit MCP ServerMCP ServersDec 20252.0k296
  6. raysonmeng avataragent-bridgeBridge between Claude Code and Codex — bidirectional agent communication via MCP Channel + JSON-RPCMCP ServersJul 20261.8k270