FastAlertNow/mcp-server
Platform-specific configuration:
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"mcp-server"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
Official Model Context Protocol (MCP) server for FastAlert. This server allows AI agents (like Claude, ChatGPT, and Cursor) to list of your channels and send notifications directly through the FastAlert API.
{
"mcpServers": {
"fastalert": {
"command": "npx",
"args": ["-y", "fastalert-mcp-server"],
"env": {
"API_KEY": "your-api-key-here"
}
}
}
}You can find your API key by visiting FastAlert and navigating to Settings.
The following tools are available through this MCP server. Each tool can be called by an AI assistant to perform specific actions.
list_channelsReturns a list of available FastAlert channels.
Input Parameters:
name (string, optional): A search term to filter channels by name.Example Call:
{
"name": "Service Alerts"
}Structured JSON Output (Default):
{
"status": true,
"message": "You have fetch channels successfully",
"data": {
"channels": [
{
"uuid": "sdf12sdf-6541-5d56-s5sd-1fa513e88a81",
"name": "Service Alerts",
"subscriber": 1000
}
]
}
}Human-Readable Text Output:
Here are your FastAlert channels:
Service Alerts
UUID: sdf12sdf-6541-5d56-s5sd-1fa513e88a81
Subscribers: 1000send_messageSends a notification message to one or more channels.
Input Parameters:
channel-uuid (string, required): The unique identifier for the target channel.title (string, required): The title of the alert notification.content (string, required): The main body text of the notification.action (string, optionalLoading reviews...