[
{
"description": "Get information about a Discord server",
"inputSchema": {
"properties": {
"server_id": {
"description": "Discord server (guild) ID",
"type": "string"
}
},
"required": [
"server_id"
],
"type": "object"
},
"name": "get_server_info"
},
{
"description": "Get a list of members in a server",
"inputSchema": {
"properties": {
"limit": {
"description": "Maximum number of members to fetch",
"maximum": 1000,
"minimum": 1,
"type": "number"
},
"server_id": {
"description": "Discord server (guild) ID",
"type": "string"
}
},
"required": [
"server_id"
],
"type": "object"
},
"name": "list_members"
},
{
"description": "Add a role to a user",
"inputSchema": {
"properties": {
"role_id": {
"description": "Role ID to add",
"type": "string"
},
"server_id": {
"description": "Discord server ID",
"type": "string"
},
"user_id": {
"description": "User to add role to",
"type": "string"
}
},
"required": [
"server_id",
"user_id",
"role_id"
],
"type": "object"
},
"name": "add_role"
},
{
"description": "Remove a role from a user",
"inputSchema": {
"properties": {
"role_id": {
"description": "Role ID to remove",
"type": "string"
},
"server_id": {
"description": "Discord server ID",
"type": "string"
},
"user_id": {
"description": "User to remove role from",
"type": "string"
}
},
"required": [
"server_id",
"user_id",
"role_id"
],
"type": "object"
},
"name": "remove_role"
},
{
"description": "Create a new text channel",
"inputSchema": {
"properties": {
"category_id": {
"description": "Optional category ID to place channel in",
"type": "string"
},
"name": {
"description": "Channel name",
"type": "string"
},
"server_id": {
"description": "Discord server ID",
"type": "string"
},
"topic": {
"description": "Optional channel topic",
"type": "string"
}
},
"required": [
"server_id",
"name"
],
"type": "object"
},
"name": "create_text_channel"
},
{
"description": "Delete a channel",
"inputSchema": {
"properties": {
"channel_id": {
"description": "ID of channel to delete",
"type": "string"
},
"reason": {
"description": "Reason for deletion",
"type": "string"
}
},
"required": [
"channel_id"
],
"type": "object"
},
"name": "delete_channel"
},
{
"description": "Add a reaction to a message",
"inputSchema": {
"properties": {
"channel_id": {
"description": "Channel containing the message",
"type": "string"
},
"emoji": {
"description": "Emoji to react with (Unicode or custom emoji ID)",
"type": "string"
},
"message_id": {
"description": "Message to react to",
"type": "string"
}
},
"required": [
"channel_id",
"message_id",
"emoji"
],
"type": "object"
},
"name": "add_reaction"
},
{
"description": "Remove a reaction from a message",
"inputSchema": {
"properties": {
"channel_id": {
"description": "Channel containing the message",
"type": "string"
},
"emoji": {
"description": "Emoji to remove (Unicode or custom emoji ID)",
"type": "string"
},
"message_id": {
"description": "Message to remove reaction from",
"type": "string"
}
},
"required": [
"channel_id",
"message_id",
"emoji"
],
"type": "object"
},
"name": "remove_reaction"
},
{
"description": "Send a message to a specific channel",
"inputSchema": {
"properties": {
"channel_id": {
"description": "Discord channel ID",
"type": "string"
},
"content": {
"description": "Message content",
"type": "string"
}
},
"required": [
"channel_id",
"content"
],
"type": "object"
},
"name": "send_message"
},
{
"description": "Read recent messages from a channel",
"inputSchema": {
"properties": {
"channel_id": {
"description": "Discord channel ID",
"type": "string"
},
"limit": {
"description": "Number of messages to fetch (max 100)",
"maximum": 100,
"minimum": 1,
"type": "number"
}
},
"required": [
"channel_id"
],
"type": "object"
},
"name": "read_messages"
},
{
"description": "Get information about a Discord user",
"inputSchema": {
"properties": {
"user_id": {
"description": "Discord user ID",
"type": "string"
}
},
"required": [
"user_id"
],
"type": "object"
},
"name": "get_user_info"
},
{
"description": "Delete a message and optionally timeout the user",
"inputSchema": {
"properties": {
"channel_id": {
"description": "Channel ID containing the message",
"type": "string"
},
"message_id": {
"description": "ID of message to moderate",
"type": "string"
},
"reason": {
"description": "Reason for moderation",
"type": "string"
},
"timeout_minutes": {
"description": "Optional timeout duration in minutes",
"maximum": 40320,
"minimum": 0,
"type": "number"
}
},
"required": [
"channel_id",
"message_id",
"reason"
],
"type": "object"
},
"name": "moderate_message"
}
]