discord_send
Send messages to a specific Discord text channel using the MCP-Discord server to facilitate communication between AI assistants and Discord users.
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"
}