discordrb MCP server
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"fracture": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An MCP (Model Context Protocol) server that provides Discord tools. Built with the MCP Ruby SDK and discordrb.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in communication
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
An MCP server that securely interfaces with your iMessage database via the Model Context Protocol (MCP), allowing LLMs to query and analyze iMessage conversations. It includes robust phone number validation, attachment processing, contact management, group chat handling, and full support for sending and receiving messages.
Email & SMS infrastructure for AI agents — send and receive real email and text messages programmatically
A Model Context Protocol (MCP) server for interacting with Microsoft 365 and Office services through the Graph API
MCP Security Weekly
Get CVE alerts and security updates for Fracture and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP (Model Context Protocol) server that provides Discord tools. Built with the MCP Ruby SDK and discordrb.
git clone https://github.com/yourusername/fracture.git
cd fracture
bundle install
Set your Discord bot token as an environment variable:
export DISCORD_BOT_TOKEN=your_token_here
Add to your Claude Desktop MCP config (claude_desktop_config.json):
{
"mcpServers": {
"fracture": {
"command": "ruby",
"args": ["/path/to/fracture/fracture.rb"],
"env": {
"DISCORD_BOT_TOKEN": "your_token_here"
}
}
}
}
On Windows, you may also need to set DISCORDRB_NONACL=1 in the env block.
Run the server directly over stdio:
ruby fracture.rb
The server communicates via stdin/stdout using the MCP JSON-RPC protocol.
| Tool | Description | Arguments |
|---|---|---|
get_guilds | Lists all guilds (servers) the bot is a member of. Returns each guild's ID and name. | None |
get_guild | Gets detailed information about a specific guild, including its categories, channels, and members. For guilds with fewer than 100 members, full member details are returned; otherwise only the member count is included. | guild_id (string, required) |
get_guild_members | Lists all members of a guild. Reserved for large servers with more than 100 members. Returns each member's ID, username, and display name. | guild_id (string, required) |
| Tool | Description | Arguments |
|---|---|---|
ban_user | Bans a user from a guild. | guild_id (string, required), user_id (string, required), reason (string, required) |
unban_user | Unbans a user from a guild. | guild_id (string, required), user_id (string, required), reason (string, required) |
get_guild_bans | Lists all bans for a guild. Returns each ban's user ID and reason. | guild_id (string, required) |
| Tool | Description | Arguments |
|---|---|---|
get_member | Gets detailed information about a guild member, including their roles, status, join date, voice state, and more. | guild_id (string, required), member_id (string, required) |
add_role | Adds a role to a guild member. | guild_id (string, required), member_id (string, required), role_id (string, required) |
remove_role | Removes a role from a guild member. | guild_id (string, required), member_id (string, required), role_id (string, required) |
| Tool | Description | Arguments |
|---|---|---|
send_message | Sends a message to a channel or user via DM. Specify either guild_id + channel_id for a channel message, or user_id for a DM. At least one of content or attachments must be provided. | guild_id (string, optional), channel_id (string, optional), user_id (string, optional), content (string, optional), attachments (string[], optional) |
edit_message | Edits an existing message in a channel or DM. | message_id (string, required), content (string, required), guild_id (string, optional), channel_id (string, optional), user_id (string, optional) |
delete_message | Deletes a message from a channel or DM. | message_id (string, required), guild_id (string, optional), channel_id (string, optional), user_id (string, optional) |
| Tool | Description | Arguments |
|---|---|---|
get_guild_roles | Gets all roles for a guild, including decoded permissions for each role. | guild_id (string, required) |
create_role | Creates a new role in a guild. | guild_id (string, required), name (strin |