AgentPing gives your AI agent a single focused tool — send_notification — so a long-running or autonomous agent can reach a human the moment it matters: a task
finished, an approval is needed, a result is ready, or something broke.
Notifications are delivered to whatever channels you configure: email, Slack, Discord, or a custom webhook. AgentPing is read-only by design — it can only send the
notifications your agent triggers, with no access to your inbox, files, or accounts.
Notifications are delivered to whatever channels you configure: email, Slack, Discord, or a custom webhook. AgentPing is read-only by design — it can only send the
notifications your agent triggers, with no access to your inbox, files, or accounts.
Hosted remote MCP server (Streamable HTTP) — nothing to run locally. Free tier: 100 notifications/month. Pro: $9/mo or $90/yr for 10,000/month.
Overview
👉 Get a free API key: https://ping.mgm-llc.org/signup
AgentPing
Give your AI agent one tool — send_notification — so it can reach you by email, Slack, Discord, or webhook. Perfect for "task done", "approval needed", or
"here's the result" from long-running or autonomous agents.
🔒 Read-only by design. AgentPing only sends the notifications your agent triggers — no access to your inbox, files, or accounts.
Get started
- Sign up free at https://ping.mgm-llc.org/signup and copy your API key.
- Set a destination (email is set by default; add Slack/Discord/webhook in the dashboard).
- Add AgentPing to your MCP client (below).
Connect
Cursor & Streamable-HTTP clients:
{ "mcpServers": { "agentping": {
"url": "https://ping.mgm-llc.org/mcp",
"headers": { "Authorization": "Bearer YOUR_API_KEY" } } } }
Cline, Claude Desktop & others (stdio bridge):
{ "mcpServers": { "agentping": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://ping.mgm-llc.org/mcp", "--header", "Authorization: Bearer YOUR_API_KEY"] } } }
Tool
send_notification(title, message?, channel?) — channel ∈ all | email | slack | discord | webhook.
Pricing
Free: 100 notifications/month. Pro $9/mo (or $90/yr): 10,000/month.
Docs: https://ping.mgm-llc.org/docs
Server Config
{
"mcpServers": {
"agentping": {
"url": "https://ping.mgm-llc.org/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}