Official MCP server for FastAlert, providing tools to list channels and send notifications.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"fastalert": {
"env": {
"API_KEY": "your-api-key-here"
},
"args": [
"-y",
"fastalert-mcp-server"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
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.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'fastalert-mcp-server' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked fastalert-mcp-server against OSV.dev.
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
PubNub Model Context Protocol MCP Server for Cursor and Claude
Social layer for Claude Code - DMs, presence, discovery, and games between AI-assisted developers
MCP server for Voximplant API — call history, users, SMS. 3 tools.
MCP Security Weekly
Get CVE alerts and security updates for io.github.FastAlertNow/mcp-server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
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: 1000
send_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, optional): Type of action ('call', 'email', 'website', 'image').action_value (string, optional): The value for the action (e.g., a URL or phone number).image (string, optional): URL or identifier for an image to include.Example Call:
{
"channel-uuid": "sdf12sdf-6541-5d56-s5sd-1fa513e88a81",
"title": "System Update",
"content": "A new version of the system is now live.",
"action": "website",
"action_value": "https://fastalert.now/updates"
}
Structured JSON Output (Default):
{
"status": true,
"message": "Message has been sent successfully"
}
Human-Readable Text Output:
Message Sent Successfully!
Your message "System Update" has been sent to Service Alerts.
Channel UUID: sdf12sdf-6541-5d56-s5sd-1fa513e88a81
Title: System Update
Content: A new version of the system is now live.
FastAlertcommandnpx -y fastalert-mcp-serverAPI_KEY.https://mcp.fastalert.now/mcp).claude_desktop_config.json.{
"mcpServers": {
"fastalert": {
"command": "npx",
"args": ["-y", "fastalert-mcp-server"],
"env": {
"API_KEY": "your-api-key-here"
}
}
}
}
cp .env.example .env
.env.npm install