AgentPing documentation
Give your AI agent a send_notification tool so it can reach you by email, Slack, Discord, or webhook.
Quickstart
- Sign up and copy your API key from the dashboard.
- Set at least one destination (email is set to your account email by default).
- Add AgentPing to your MCP client (below). Your agent now has
send_notification.
Connect your MCP client
Most clients support remote MCP servers. Use your API key as a Bearer token.
A. Direct remote URL (Cursor, and clients that support Streamable HTTP):
{
"mcpServers": {
"agentping": {
"url": "https://ping.mgm-llc.org/mcp",
"headers": { "Authorization": "Bearer YOUR_API_KEY" }
}
}
}
B. Stdio bridge (for clients that only support local servers, e.g. some Claude Desktop setups):
{
"mcpServers": {
"agentping": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://ping.mgm-llc.org/mcp", "--header", "Authorization: Bearer YOUR_API_KEY"]
}
}
}
Per-client notes
- Cursor: add the JSON (form A) to
~/.cursor/mcp.jsonor project.cursor/mcp.json. - Claude Desktop: Settings → Developer → Edit Config → add form B (mcp-remote), then restart.
- Cline / VS Code: open the MCP Servers panel → Add server → paste form A (URL + header) or form B.
- Any other MCP client: use form A if it accepts a URL + headers; otherwise the form B bridge works everywhere.
Set up your notification channels
- Email — set in your dashboard (defaults to your account email).
- Slack — create an Incoming Webhook at api.slack.com/apps → your app → Incoming Webhooks → Add to Workspace, then paste the URL in the dashboard.
- Discord — Server Settings → Integrations → Webhooks → New Webhook → Copy URL, then paste it in the dashboard.
- Custom webhook — any HTTPS URL; we POST JSON
{ title, message, at }.
Tool reference
send_notification(title, message?, channel?)
title(string, required) — short subject.message(string, optional) — body text.channel(optional) —all(default) |email|slack|discord|webhook.
Returns a confirmation of which channels were used.
FAQ
What does it cost?
Free: 100 notifications/month. Pro ($9/mo or $90/yr): 10000/month.
Can the agent read my data?
No. AgentPing only sends notifications you trigger. It has no read access to your inbox or accounts.
Which clients work?
Any MCP-compatible client (Claude, Cursor, Cline, and others). Use the stdio bridge (form B) for maximum compatibility.