Pingfyr MCP Server

Schedule reminders for AI agents via email, webhook, Slack, Discord, Telegram, or Google Calendar.

Remote serverstreamable-http

What is the Pingfyr MCP server?

Schedule reminders for AI agents via email, webhook, Slack, Discord, Telegram, or Google Calendar. The pingfyr mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 4 defined tools rather than through you.

What it actually does

Connect your AI assistant to Pingfyr via MCP. Manage reminders through natural conversation.

Adding it to your client

Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.

Its toolset

Everything the assistant can do here goes through one of these:

  • create_reminder — Schedule a new reminder via email, webhook, Slack, Discord, Telegram, OpenClaw, or Google Calendar
  • list_reminders — List all reminders with optional filtering by status, limit, and offset
  • update_reminder — Update a pending reminder (title, body, fire_at, channel, recipients, repeat, timezone)
  • cancel_reminder — Cancel a pending reminder

Configuration

You will need 2 environment variables: PINGFYR_API_KEY, PINGFYR_API_URL. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Caveats

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the pingfyr mcp server does with a few real requests.

When to reach for it

Among the team communication options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Pingfyr's toolset — create_reminder, list_reminders, update_reminder and 1 more — is a fair guide to whether it matches your workflow. It is maintained by com.pingfyr; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Pingfyr's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Available tools

ToolWhat it does
create_reminderSchedule a new reminder via email, webhook, Slack, Discord, Telegram, OpenClaw, or Google Calendar
list_remindersList all reminders with optional filtering by status, limit, and offset
update_reminderUpdate a pending reminder (title, body, fire_at, channel, recipients, repeat, timezone)
cancel_reminderCancel a pending reminder

How to install the Pingfyr MCP server

{
  "mcpServers": {
    "pingfyr": {
      "command": "pingfyr-mcp",
      "env": {
        "PINGFYR_API_KEY": "rm_your_api_key"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
PINGFYR_API_KEYCredential the server authenticates with.Yes
PINGFYR_API_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Pingfyr to create reminder.
  • Use Pingfyr to list reminders.
  • Use Pingfyr to update reminder.

Frequently asked questions

It connects Pingfyr to MCP-compatible AI assistants such as Claude and Cursor, exposing 4 tools (create_reminder, list_reminders, update_reminder, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Pingfyr directly.