Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
Noriget avatar

AgentPing MCP

  • Updated June 10, 2026
  • Noriget/agentping

AgentPing is an MCP server that adds a send_notification tool so coding agents can alert you via email, Slack, Discord, or webhook.

About

AgentPing is a minimal MCP server that lets AI coding agents push notifications to channels you already use. Instead of building bespoke email or Slack bots for every side project, you register the remote endpoint, store a Bearer API key from the AgentPing signup flow, and expose send_notification to the agent. developers running overnight refactors, scheduled Codex jobs, or multi-step Claude Code plans gain a reliable “tap on the shoulder” when work completes or needs approval. It complements monitoring stacks by focusing on conversational agent outcomes rather than server metrics. The surface area is intentionally small—one tool, multiple channels—so it stays beginner-friendly, though you still own message content policy and secret handling in your MCP config.

  • One MCP tool: send_notification across email, Slack, Discord, and webhook
  • Hosted remote MCP at ping.mgm-llc.org/mcp with Bearer API key
  • Free signup for API keys at ping.mgm-llc.org
  • Version 1.0.0 open-source repo on GitHub (Noriget/agentping)
  • Designed for human-in-the-loop when agents complete tasks or hit errors

AgentPing MCP by the numbers

  • Data as of Aug 10, 2026 (Skillselion catalog sync)
terminal
claude mcp add --transport http agentping https://ping.mgm-llc.org/mcp --header "Authorization: Bearer YOUR_TOKEN"

Add your badge

Show developers this MCP server is listed on Skillselion. Paste this into your README.

Listed on Skillselion
TransportHTTP
AuthRequired
Last updatedJune 10, 2026
RepositoryNoriget/agentping

What it does

Give long-running coding agents a single send_notification tool for email, Slack, Discord, or webhooks when jobs finish or need your attention.

Who is it for?

Best when you run long agent sessions and want lightweight alerts without maintaining separate notification microservices.

Skip if: Skip if you need on-call paging, incident SLA tooling, or deep observability dashboards—use dedicated monitoring products instead.

What you get

Your agent sends structured notifications through AgentPing when milestones complete, fail, or need human approval.

  • Working send_notification calls from agent sessions
  • Cross-channel alerts without custom notification code per repo
  • Documented alert hooks for long-running agent recipes

By the numbers

  • 1 documented MCP tool: send_notification
  • 4 delivery channels: email, Slack, Discord, webhook
  • Server version 1.0.0
README.md

AgentPing logo

AgentPing

Let your AI agent notify you — by email, Slack, Discord, or webhook.
A hosted, remote MCP server. One tool: send_notification.

Website · Docs · Get an API key (free)

▶ Get your free API key → ping.mgm-llc.org/signup


What it does

Long-running agents work while you're away. AgentPing gives them a send_notification tool so they can reach you the moment something matters:

  • Task done — "Migration finished, 3,412 rows updated."
  • 🙋 Approval needed — "Ready to deploy to prod. Confirm?"
  • 📊 Here's the result — daily summary, scrape output, build status.
  • 🚨 Something broke — error alerts from an autonomous run.

Notifications go to any channel you configure: email, Slack, Discord, or a custom webhook.

🔒 Read-only by design. AgentPing can only send the notifications your agent triggers. It has no access to your inbox, files, or accounts.

Connect it (MCP client config)

A. Remote URL — Cursor and any client that supports Streamable HTTP:

{
  "mcpServers": {
    "agentping": {
      "url": "https://ping.mgm-llc.org/mcp",
      "headers": { "Authorization": "Bearer YOUR_API_KEY" }
    }
  }
}

B. Stdio bridge — works with every MCP client (incl. Claude Desktop):

{
  "mcpServers": {
    "agentping": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://ping.mgm-llc.org/mcp", "--header", "Authorization: Bearer YOUR_API_KEY"]
    }
  }
}

Get your API key by signing up at ping.mgm-llc.org and setting your destinations. See the full docs for per-client steps and Slack/Discord webhook setup.

Tool

Tool Arguments Notes
send_notification title (string, required), message (string, optional), channel (optional) channelall | email | slack | discord | webhook. Default: all configured channels.

Pricing

  • Free — 100 notifications/month.
  • Pro — $9/mo or $90/yr — 10,000 notifications/month.

Protocol

Stateless Streamable HTTP (JSON-RPC 2.0): initialize, tools/list, tools/call, ping. Auth via Authorization: Bearer <api_key> (or ?key= for clients that can't set headers).

Self-hosting

Built on Cloudflare Workers + D1 + Hono. To run your own instance:

npm install
npm run db:local
npm run dev            # http://localhost:8787

.dev.vars needs APP_SECRET (and RESEND_API_KEY to enable email).

npx wrangler login
npx wrangler d1 create agentping       # put database_id in wrangler.jsonc
npm run db:remote
npx wrangler secret put APP_SECRET
npx wrangler secret put RESEND_API_KEY
# Stripe billing (optional):
npx wrangler secret put STRIPE_SECRET_KEY
npx wrangler secret put STRIPE_WEBHOOK_SECRET
npx wrangler deploy

Set vars.APP_URL to the production URL and attach a custom domain.

License

MIT · Operated by MGM LLC.

Recommended MCP Servers

How it compares

Single-tool notification MCP, not a full incident-management platform or email marketing suite.

FAQ

Who is agentping for?

Developers using Claude Code, Cursor, or similar agents who want email, Slack, Discord, or webhook alerts from automated coding workflows.

When should I use agentping?

Use it whenever agents run unattended and you need a reliable human notification on success, failure, or approval requests.

How do I add agentping to my agent?

Create a free key at ping.mgm-llc.org/signup and add the remote MCP URL https://ping.mgm-llc.org/mcp with Authorization Bearer <api_key> in your MCP client.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.