Open Connector
All tools

Discord Bot

Connect to Discord with a bot token to manage channels and messages.

discord-botv1.0.07 tools

Authentication

MethodKindStatusDetails
API Keyapi_keyavailable

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.

Gets a Discord channel by ID using a bot token.

Authentication

Connected account required

Tags

channelsread
Create Discord channel messageDISCORD_BOT_CHANNEL_MESSAGE_CREATESends a message to a Discord channel using a bot token.

Sends a message to a Discord channel using a bot token.

Authentication

Connected account required

Tags

channelsmessageswrite
Delete Discord channel messageDISCORD_BOT_CHANNEL_MESSAGE_DELETEDeletes a Discord channel message using a bot token.

Deletes a Discord channel message using a bot token.

Authentication

Connected account required

Tags

channelsmessagesdelete
Edit Discord channel messageDISCORD_BOT_CHANNEL_MESSAGE_EDITEdits a Discord channel message sent by the bot.

Edits a Discord channel message sent by the bot.

Authentication

Connected account required

Tags

channelsmessageswrite
Get Discord channel messageDISCORD_BOT_CHANNEL_MESSAGE_GETGets a specific Discord channel message using a bot token.

Gets a specific Discord channel message using a bot token.

Authentication

Connected account required

Tags

channelsmessagesread
List Discord channel messagesDISCORD_BOT_CHANNEL_MESSAGES_LISTLists messages in a Discord channel using a bot token.

Lists messages in a Discord channel using a bot token.

Authentication

Connected account required

Tags

channelsmessagesread
List Discord guild channelsDISCORD_BOT_GUILD_CHANNELS_LISTLists channels in a Discord guild using a bot token.

Lists channels in a Discord guild using a bot token.

Authentication

Connected account required

Tags

guildschannelsread

Provider resources