CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Mcp Server

fastalertnow/mcp-server
STDIOregistry active
Summary

If you're using FastAlert for notifications and want your AI assistant to send alerts or check channel status, this is the official MCP integration. It exposes two tools: list_channels for discovering your notification channels with optional name filtering, and send_message for pushing rich notifications with titles, content, action buttons, and images to specific channels via UUID. You'll need a FastAlert API key from your account settings. The use case is straightforward: let Claude or another LLM send alerts when monitoring systems, responding to user requests, or triggering notifications based on conversation context without you manually switching to the FastAlert dashboard.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

FastAlert MCP Server

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.

Features

  • Channel Discovery: List all of your channels with optional name filtering.
  • Send Notifications: Send rich messages (title, content, actions, images) to one or multiple channels.

Quick Start

{
  "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.

Available Tools

The following tools are available through this MCP server. Each tool can be called by an AI assistant to perform specific actions.

1. list_channels

Returns 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

2. send_message

Sends 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.

Integration with LLMs

Configuration in Cursor

  1. Go to Settings -> MCP.
  2. Click Add New MCP Server.
  3. Name: FastAlert
  4. Type: command
  5. Command: npx -y fastalert-mcp-server
  6. Env: Add API_KEY.

Configuration in ChatGPT

  1. Go to Settings -> Integrations.
  2. Click Add MCP Server.
  3. Use the hosted URL of your server (e.g., https://mcp.fastalert.now/mcp).
  4. Follow the OAuth prompts.

Configuration in Claude

  1. Open claude_desktop_config.json.
  2. Add the following entry:
{
  "mcpServers": {
    "fastalert": {
      "command": "npx",
      "args": ["-y", "fastalert-mcp-server"],
      "env": {
        "API_KEY": "your-api-key-here"
      }
    }
  }
}

Setup & Development

Requirements

  • Node: Version 18 or higher is recommended.
  • API_KEY: A valid FastAlert API Key is required for authentication.

Local Installation

  1. Clone the repository
  2. Copy the example environment file:
    cp .env.example .env
    
  3. Configure your environment variables in .env.
  4. Install dependencies:
    npm install
    
  5. Build the project:
    npm run build
    
  6. Run inspector tests:
    npm run inspector
    
  7. Run locally:
    npm start
    

Configuration (Environment Variables)

The following environment variables should be configured in your .env file:

VariableDescriptionExample
API_URLThe FastAlert API endpointhttps://api.fastalert.now/api
FRONT_URLYour frontend application URLhttps://fastalert.now
BASE_URLThe public URL where this MCP server is hostedhttp://localhost:3000
API_KEYYour FastAlert API Keyyour-api-key-here
PORT(Optional) Port to run the server on3000

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This project is licensed under the MIT License.


Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Registryactive
Packagefastalert-mcp-server
TransportSTDIO
UpdatedFeb 16, 2026
View on GitHub