discord-mcp

discord-mcp is a Java-based application that integrates with Discord servers to provide functionalities utilizing the Model Context Protocol (MCP). Users can retrieve server information through APIs and leverage tools that enhance communication efficiency. It serves as a valuable resource, especially for developers and community managers.

GitHub Stars

61

User Rating

Not Rated

Favorites

0

Views

36

Forks

15

Issues

1

Installation
Difficulty
Beginner
Estimated Time
5-10 minutes

Installation

Installation

Prerequisites

Please specify required software and versions:
Java: 11 or higher
Maven: Latest version

Installation Steps

1. Clone Repository

bash
git clone https://github.com/SaseQ/discord-mcp
cd discord-mcp

2. Build the Project

bash
mvn clean package # The jar file will be available in the /target directory

3. Configure AI Client

Create a Discord Bot token and add it to your configuration file:
json
{
  "mcpServers": {
    "discord-mcp": {
      "command": "java",
      "args": [
        "-jar",
        "/absolute/path/to/discord-mcp-0.0.1-SNAPSHOT.jar"
      ],
      "env": {
        "DISCORD_TOKEN": "YOUR_DISCORD_BOT_TOKEN"
      }
    }
  }
}

Troubleshooting

Common Issues

Issue: Server won't start Solution: Check your Java version and ensure Maven is installed correctly.

Additional Resources