Alerter System API Claude Desktop Config
Add the Alerter System API MCP server to Claude Desktop with this ready-to-use configuration.
Setup Instructions
- Open Claude Desktop
- Go to Settings → Developer → Edit Config →
claude_desktop_config.json - Paste the JSON below into the file
- Set your credentials in the
envsection - 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_KEYReplace your_alerter_system_api_api_key with your actual alerter system api api key
Endpoints
GET
/api/alert-logRetrieves the collection of AlertLog resources.
GET
/api/alert-log-status-codeRetrieves 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-serviceRetrieves the collection of AlertService resources.
POST
/api/alert-serviceCreates a AlertService resource.
GET
/api/alert-service-transport-codeRetrieves 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.