discord_send
Send messages directly to a Discord text channel using MCP-Discord server. Input channel ID and message content to enable AI assistants to communicate on Discord platforms efficiently.
Instructions
Sends a message to a specified Discord text channel
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channelId | Yes | ||
message | Yes |
Input Schema (JSON Schema)
{
"properties": {
"channelId": {
"type": "string"
},
"message": {
"type": "string"
}
},
"required": [
"channelId",
"message"
],
"type": "object"
}