mcp-discord
by hanweg
send_message
Send a message to a specific channel
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channel_id | Yes | Discord channel ID | |
content | Yes | Message content |
Input Schema (JSON Schema)
{
"properties": {
"channel_id": {
"description": "Discord channel ID",
"type": "string"
},
"content": {
"description": "Message content",
"type": "string"
}
},
"required": [
"channel_id",
"content"
],
"type": "object"
}