Discord Raw API MCP Server
by hanweg
discord_api
Execute raw Discord API commands. Supports both REST API calls and application commands.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
endpoint | Yes | Discord API endpoint (e.g., 'guilds/{guild.id}/roles' or command like '/role create') | |
method | Yes | HTTP method (GET, POST, PUT, PATCH, DELETE) | |
payload | No | Optional 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"
}