Discord Raw API MCP Server

discord_api

Execute raw Discord API commands. Supports both REST API calls and application commands.

Input Schema

NameRequiredDescriptionDefault
endpointYesDiscord API endpoint (e.g., 'guilds/{guild.id}/roles' or command like '/role create')
methodYesHTTP method (GET, POST, PUT, PATCH, DELETE)
payloadNoOptional request payload/body

Input Schema (JSON Schema)

{ "properties": { "endpoint": { "description": "Discord API endpoint (e.g., 'guilds/{guild.id}/roles' or command like '/role create')", "type": "string" }, "method": { "description": "HTTP method (GET, POST, PUT, PATCH, DELETE)", "enum": [ "GET", "POST", "PUT", "PATCH", "DELETE" ], "type": "string" }, "payload": { "description": "Optional request payload/body", "type": "object" } }, "required": [ "method", "endpoint" ], "type": "object" }

You must be authenticated.

Other Tools