This Discord Raw API MCP server, developed by hanweg, provides a flexible interface for AI assistants to interact with Discord's API. Built using Python and the discord.py library, it supports both REST API calls and slash command syntax, offering a unified approach to Discord bot development. The implementation stands out by abstracting Discord's complex API structure into a more accessible format, allowing for easier integration with AI systems. By exposing Discord's capabilities through standardized MCP endpoints, it enables AI assistants to perform a wide range of Discord operations, from message sending to role management. This server is particularly useful for scenarios requiring dynamic Discord bot behavior, such as moderation tools, custom command handlers, or AI-driven community management systems.
Aún no hay reseñas. ¡Sé el primero en reseñar!
Inicia sesión para unirte a la conversación
Create a role in a guild. Parameters: method (string - 'POST'), endpoint (string - '/role create name:Role_Name color:Color_Value permissions:Permissions_Value guild_id:Guild_ID'), payload (optional JSON object with role details).
Send a message to a channel. Parameters: method (string - 'POST'), endpoint (string - 'channels/Channel_ID/messages'), payload (JSON object with content of the message).
Get information about a server. Parameters: method (string - 'GET'), endpoint (string - 'guilds/Guild_ID').
Assign a role to a member in a guild. Parameters: method (string - 'PUT'), endpoint (string - 'guilds/Server_ID/members/User_ID/roles/Role_ID'), payload (optional JSON object).
Move a channel to a different category. Parameters: method (string - 'PATCH'), endpoint (string - 'channels/Channel_ID'), payload (JSON object with updated parent_id).