VoiceOS Discord MCP Server
Allows reading and writing Discord messages, including sending messages, replying to messages, listing channels and servers, and authenticating a Discord bot through Composio.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@VoiceOS Discord MCP Serversend 'Good morning' to channel general"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
VoiceOS Discord MCP Server
This is a standalone TypeScript MCP server that lets VoiceOS read and write Discord messages through Composio's DISCORDBOT toolkit.
VoiceOS still launches this as a local stdio MCP server, but Discord authentication and token handling are delegated to Composio.
Features
connect_discord_bot: Returns a Composio Connect Link for Discord bot/account authentication.list_discord_servers: Explains guild/server discovery for the Composio-backed bot flow.list_discord_channels: Lists channels for a known Discord guild/server ID.read_discord_messages: Fetches recent messages from a Discord channel ID.send_discord_message: Sends a message to a Discord channel ID.reply_discord_message: Replies to a specific Discord message ID.
Write actions are described clearly in the MCP tool definitions so VoiceOS can show its confirmation pill before sending anything to Discord.
Requirements
Node.js 20+
Composio API key
A stable user ID for local testing
For production VoiceOS, the user ID should be injected automatically from the logged-in VoiceOS account. Users should not manually determine or enter it.
Install
npm installConfigure Environment
Create a local .env file:
COMPOSIO_API_KEY=your_composio_api_key
VOICEOS_USER_ID=local-test-user
COMPOSIO_TOOLKIT=DISCORDBOT
# Recommended/required for reliable DISCORDBOT channel and message tools.
COMPOSIO_AUTH_CONFIG_ID=your_discordbot_auth_config_idCOMPOSIO_AUTH_CONFIG_ID should point to a custom Composio DISCORDBOT auth config that includes the Discord client ID, client secret, bot token, and permission integer. The default Composio-managed OAuth connection can show as ACTIVE while still lacking the bot token needed for server channel/message endpoints, which causes Discord 401 Unauthorized responses.
Optional server IDs for channel discovery:
DISCORD_GUILD_IDS=server_id_1,server_id_2DISCORD_GUILD_IDS is useful because the current Composio-backed MCP maps channel listing to DISCORDBOT_LIST_GUILD_CHANNELS, which requires a guild/server ID.
Run Locally
npm run startConnect to VoiceOS
Open VoiceOS settings.
Go to Custom Integrations.
Click Add.
Name the integration, for example
Discord.Paste the launch command:
/Users/makslas/Desktop/Development-Repos/VoiceOS-Discord-MCP/run-discord-mcp.shClick Connect.
Authentication Flow
After the MCP is connected in VoiceOS, ask:
Connect DiscordVoiceOS should call connect_discord_bot, which opens a Composio Connect Link. If COMPOSIO_AUTH_CONFIG_ID is set, the link is created against that exact auth config instead of Composio's default managed OAuth config.
If the user tries any Discord action before authenticating, the MCP returns an auth-required message. Normal Discord actions intentionally do not open Composio automatically, which prevents auth retry loops.
Discord Bot authentication is required before I can access Discord.
Please explicitly ask: `Connect Discord` when you want me to open the Composio connection page.Tool Details
connect_discord_bot
Creates a Composio Connect Link for DISCORDBOT.
Use this when asking VoiceOS:
Connect Discordlist_discord_servers
If DISCORD_GUILD_IDS is configured, fetches details for those guilds. Otherwise, explains that Composio DISCORDBOT channel listing requires a guild/server ID.
list_discord_channels
Lists Discord channels for a server/guild.
Parameters:
guild_id: Optional Discord server/guild ID. If omitted, the tool usesDISCORD_GUILD_IDS.text_only: Defaults totrue, returning only text-like channels suitable for read/send message workflows.
Use this when asking VoiceOS:
What Discord channels do you have access to in server GUILD_ID?read_discord_messages
Reads recent messages from a channel via DISCORDBOT_LIST_MESSAGES.
Parameters:
channel_id: Discord channel ID.channel_name: Discord channel name, such asgeneral. Used whenchannel_idis omitted.guild_id: Optional Discord server/guild ID used to resolvechannel_name. If omitted, the tool usesDISCORD_GUILD_IDS.limit: Number of messages to fetch, from 1 to 100. Defaults to 10.before: Optional message ID for pagination. Fetches messages before this message.after: Optional message ID for pagination. Fetches messages after this message.around: Optional message ID for pagination. Fetches messages around this message.author_filter: Optional user ID, username, or display-name filter.
send_discord_message
Sends a message to a channel via DISCORDBOT_CREATE_MESSAGE.
Parameters:
channel_id: Discord channel ID.channel_name: Discord channel name, such asgeneral. Used whenchannel_idis omitted.guild_id: Optional Discord server/guild ID used to resolvechannel_name. If omitted, the tool usesDISCORD_GUILD_IDS.content: Exact message content. Max 2000 characters.tts: Whether to send as text-to-speech. Defaults tofalse.allowed_mentions: Mention parsing policy. One ofnone,users,users_and_roles, oreveryone. Defaults tonone.
reply_discord_message
Replies to a specific message via DISCORDBOT_CREATE_MESSAGE with message_reference.
Parameters:
channel_id: Discord channel ID containing the original message.channel_name: Discord channel name, such asgeneral. Used whenchannel_idis omitted.guild_id: Optional Discord server/guild ID used to resolvechannel_name. If omitted, the tool usesDISCORD_GUILD_IDS.message_id: Discord message ID to reply to.content: Exact reply content. Max 2000 characters.allowed_mentions: Mention parsing policy. One ofnone,users,users_and_roles, oreveryone. Defaults tonone.
Discord DM Limitations
Composio DISCORDBOT supports bot-accessible channel messaging, message reads, replies, guild channel listing, and bot-created DMs.
It does not grant broad access to a user's existing personal DMs. Group DM operations require user OAuth2 access tokens with gdm.join and remain constrained by Discord API limitations.
Production VoiceOS User IDs
For production, VoiceOS should pass its internal logged-in user ID to Composio automatically. The user should never manually type a user ID.
Do not use Discord email as the primary Composio user_id:
The connect link requires a user ID before Discord OAuth completes.
Discord email may be unavailable depending on scopes.
Email can change.
One VoiceOS user may eventually connect multiple Discord accounts.
Security Notes
Do not commit
.env.Do not commit
COMPOSIO_API_KEY.Do not commit Discord bot tokens or connected-account credentials.
allowed_mentionsdefaults tononeso generated messages do not accidentally ping users, roles,@everyone, or@here.
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/CharityDEX/voiceos-discord-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server