mcp-deadmansnitch
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-deadmansnitchCreate a daily monitor called 'Database Backup'"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP Dead Man's Snitch
A Model Context Protocol (MCP) server for Dead Man's Snitch monitoring service. This server enables AI assistants like Claude to interact with Dead Man's Snitch to monitor scheduled tasks and cron jobs.
What it does
This MCP server provides tools to:
List and search your monitoring snitches
Check in (ping) snitches to confirm tasks are running
Create new monitors for your scheduled jobs
Update, pause, or delete existing monitors
Manage tags for organizing your snitches
Installation & Setup
Get your API key from Dead Man's Snitch account settings
Configure your MCP client by adding this to your settings:
{
"mcpServers": {
"deadmansnitch": {
"command": "uvx",
"args": ["mcp-deadmansnitch"],
"env": {
"DEADMANSNITCH_API_KEY": "your_api_key_here"
}
}
}
}Nix / NixOS
For Nix users, this project provides a flake with packages, overlays, and a development shell:
# Run directly
nix run github:jamesbrink/mcp-deadmansnitch
# Build the package
nix build github:jamesbrink/mcp-deadmansnitchSee NIX.md for detailed NixOS configuration and declarative usage.
Docker
A Docker image can be built from the Nix flake:
# Build and load the image
nix build github:jamesbrink/mcp-deadmansnitch#docker
docker load < result
# Run the server
docker run --rm -e DEADMANSNITCH_API_KEY="your_api_key" mcp-deadmansnitch:latestConfigure your MCP client to use Docker:
{
"mcpServers": {
"deadmansnitch": {
"command": "docker",
"args": ["run", "--rm", "-i", "-e", "DEADMANSNITCH_API_KEY", "mcp-deadmansnitch:latest"],
"env": {
"DEADMANSNITCH_API_KEY": "your_api_key_here"
}
}
}
}Available Tools
This MCP server exposes a single unified snitch tool with an action parameter to reduce context usage when connecting to LLMs.
snitch
Manage Dead Man's Snitch monitors with the following actions:
Action | Description | Required Params | Optional Params |
| List all snitches | - |
|
| Get snitch details |
| - |
| Create new snitch |
|
|
| Update snitch |
|
|
| Delete snitch |
| - |
| Pause monitoring |
|
|
| Resume monitoring |
| - |
| Send check-in |
|
|
| Add tags |
| - |
| Remove a tag |
| - |
Valid intervals: 15_minute, hourly, daily, weekly, monthly
Valid alert_types: basic, smart
Example Usage in Claude
Once configured, you can ask Claude:
"List all my Dead Man's Snitch monitors"
"Create a daily monitor called 'Database Backup'"
"Check in the backup-job snitch"
"Pause the deployment monitor for 2 hours"
"Show me all snitches tagged with 'production'"
Support
License
MIT License - see LICENSE file for details.
This server cannot be installed
Maintenance
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jamesbrink/mcp-deadmansnitch'
If you have feedback or need assistance with the MCP directory API, please join our Discord server