Skip to content
MCP-Bridge
Security

Alerter System API Claude Desktop Config

Add the Alerter System API MCP server to Claude Desktop with this ready-to-use configuration.

Setup Instructions

  1. Open Claude Desktop
  2. Go to Settings → Developer → Edit Config → claude_desktop_config.json
  3. Paste the JSON below into the file
  4. Set your credentials in the env section
  5. Restart Claude Desktop

Configuration JSON

Copy the entire block into your claude_desktop_config.json

{
  "mcpServers": {
    "alertersystem-com": {
      "command": "npx",
      "args": [
        "-y",
        "@mcp/alertersystem-com"
      ],
      "env": {
        "ALERTER_SYSTEM_API_API_KEY": "your_alerter_system_api_api_key"
      }
    }
  }
}

Environment Variables

ALERTER_SYSTEM_API_API_KEY

Replace your_alerter_system_api_api_key with your actual alerter system api api key

Endpoints

GET/api/alert-log

Retrieves the collection of AlertLog resources.

GET/api/alert-log-status-code

Retrieves the collection of AlertLogStatusCode resources.

GET/api/alert-log-status-code/{id}

Retrieves a AlertLogStatusCode resource.

GET/api/alert-log/{id}

Retrieves a AlertLog resource.

GET/api/alert-service

Retrieves the collection of AlertService resources.

POST/api/alert-service

Creates a AlertService resource.

GET/api/alert-service-transport-code

Retrieves the collection of AlertServiceTransportCode resources.

GET/api/alert-service-transport-code/{id}

Retrieves a AlertServiceTransportCode resource.

GET/api/alert-service/{id}

Retrieves a AlertService resource.

PUT/api/alert-service/{id}

Replaces the AlertService resource.