A Discord relay server to send messages and prompts to a channel and receive responses.
This MCP server allows Claude to send messages and prompts to a Discord channel and receive responses.
The server requires configuration in your MCP settings file. Add the following to your configuration file:
{
"mcpServers": {
"discord-relay": {
"command": "node",
"args": [
"/ABSOLUTE/PATH/TO/MCP Relay/build/index.js"
],
"env": {
"DISCORD_TOKEN": "your_bot_token_here",
"DISCORD_CHANNEL_ID": "your_channel_id_here"
}
}
}
}
Replace:
/ABSOLUTE/PATH/TO/MCP Relay
with the actual path to your MCP Relay projectyour_bot_token_here
with your Discord bot tokenyour_channel_id_here
with your Discord channel IDNote: Make sure to use absolute paths in the configuration.
The server provides a tool called send-message
that accepts the following parameters:
{
type: 'prompt' | 'notification', // Type of message
title: string, // Message title
content: string, // Message content
actions?: Array<{ // Optional action buttons
label: string, // Button label
value: string // Value returned when clicked
}>,
timeout?: number // Optional timeout in milliseconds
}
Notification: Simple message that doesn't expect a response
{
"type": "notification",
"title": "Hello",
"content": "This is a notification"
}
Prompt: Message that waits for a response
{
"type": "prompt",
"title": "Question",
"content": "Do you want to proceed?",
"actions": [
{ "label": "Yes", "value": "yes" },
{ "label": "No", "value": "no" }
],
"timeout": 60000 // Optional: 1 minute timeout
}
Notes:
A server for interacting with WeChat, a popular messaging and social media app.
Manage Twilio resources such as subaccounts, phone numbers, and regulatory bundles using the Twilio API.
A standardized interface for managing, sending, and retrieving emails through the Gmail API.
Provides standardized access to social platform and onchain data using the Neynar API.
Allows AI agents to search Gmail threads, learn your writing style, and draft emails.
A GitHub Action that functions as a Slack MCP server, enabling secure image downloads and integrations with Slack.
An IMAP Model Context Protocol (MCP) server to expose IMAP operations as tools for AI assistants.
A server for the Dixa API, enabling management of conversations and tags.
Manage emails using Gmail and IMAP protocols. Requires external configuration for credentials and settings.
An open-source messaging server for client-to-client communication using MCP HTTP Streamable messaging.