Claude Notify

Push notifications for Claude Code agents and hooks

Notification Status

Checking...

Your Channels

Test Notification


API Usage

Send notifications via POST request:

POST /notify
Content-Type: application/json

{
  "token": "YOUR_TOKEN",
  "title": "Claude Done",
  "body": "Task completed successfully"
}

curl example:

curl -X POST http://localhost:3939/notify \
  -H "Content-Type: application/json" \
  -d '{"token":"YOUR_TOKEN","title":"Claude","body":"Done!"}'