Discord Bot
Connect to Discord with a bot token to manage channels and messages.
discord-botv1.0.07 tools
Authentication
| Method | Kind | Status | Details |
|---|---|---|---|
| API Key | api_key | available | — |
Call a tool
import { createClient } from "@open-connector/sdk";const oc = createClient({ baseUrl: "https://api.openconnector.dev", apiKey: process.env.OPEN_CONNECTOR_API_KEY!,});const result = await oc.executeTool({ slug: "DISCORD_BOT_CHANNEL_GET", connectedAccountId: "conn_...", arguments: { /* match this tool's input schema */ },});import Composio from "@composio/client";const composio = new Composio({ baseURL: "https://api.openconnector.dev/composio", apiKey: process.env.OPEN_CONNECTOR_API_KEY!,});const result = await composio.tools.execute("DISCORD_BOT_CHANNEL_GET", { connected_account_id: "conn_...", arguments: { /* match this tool's input schema */ },});oc tools execute DISCORD_BOT_CHANNEL_GET --data '{ }'Tool catalog
Available tools
7 callable operations
Get Discord channelDISCORD_BOT_CHANNEL_GETGets a Discord channel by ID using a bot token.Connection
Gets a Discord channel by ID using a bot token.
Authentication
Connected account requiredTags
channelsread
Create Discord channel messageDISCORD_BOT_CHANNEL_MESSAGE_CREATESends a message to a Discord channel using a bot token.Connection
Sends a message to a Discord channel using a bot token.
Authentication
Connected account requiredTags
channelsmessageswrite
Delete Discord channel messageDISCORD_BOT_CHANNEL_MESSAGE_DELETEDeletes a Discord channel message using a bot token.Connection
Deletes a Discord channel message using a bot token.
Authentication
Connected account requiredTags
channelsmessagesdelete
Edit Discord channel messageDISCORD_BOT_CHANNEL_MESSAGE_EDITEdits a Discord channel message sent by the bot.Connection
Edits a Discord channel message sent by the bot.
Authentication
Connected account requiredTags
channelsmessageswrite
Get Discord channel messageDISCORD_BOT_CHANNEL_MESSAGE_GETGets a specific Discord channel message using a bot token.Connection
Gets a specific Discord channel message using a bot token.
Authentication
Connected account requiredTags
channelsmessagesread
List Discord channel messagesDISCORD_BOT_CHANNEL_MESSAGES_LISTLists messages in a Discord channel using a bot token.Connection
Lists messages in a Discord channel using a bot token.
Authentication
Connected account requiredTags
channelsmessagesread
List Discord guild channelsDISCORD_BOT_GUILD_CHANNELS_LISTLists channels in a Discord guild using a bot token.Connection
Lists channels in a Discord guild using a bot token.
Authentication
Connected account requiredTags
guildschannelsread