Discord (Full API)
Summary
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.
Available Actions(6)
create_role
Create a role in the specified guild. Parameters: method (string, 'POST'), endpoint (string, '/role create name:Role_Name color:red permissions:8 guild_id:123456789'), payload (optional JSON object for role details).
send_message
Send a message to a specified channel. Parameters: method (string, 'POST'), endpoint (string, 'channels/123456789/messages'), payload (JSON object containing the message content).
get_server_info
Retrieve information about a specified server. Parameters: method (string, 'GET'), endpoint (string, 'guilds/123456789').
create_channel
Create a new channel in a specified guild. Parameters: method (string, 'POST'), endpoint (string, 'guilds/{server_id}/channels'), payload (JSON object containing the channel details).
move_channel
Move a channel to a different category. Parameters: method (string, 'PATCH'), endpoint (string, 'channels/{channel_id}'), payload (JSON object containing the parent_id for the category).
assign_role
Assign a role to a member in a specified guild. Parameters: method (string, 'PUT'), endpoint (string, 'guilds/{server_id}/members/{user_id}/roles/{role_id}'), payload (optional JSON object).
コミュニティレビュー
まだレビューはありません. 最初のレビューを投稿しましょう!
会話に参加するにはサインインしてください