Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"pingfyr": {
"env": {
"PINGFYR_API_KEY": "rm_your_api_key"
},
"command": "pingfyr-mcp"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Connect your AI assistant to Pingfyr via MCP. Manage reminders through natural conversation.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@pingfyr/mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @pingfyr/mcp against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in productivity / ai-ml
Persistent memory using a knowledge graph
Dynamic problem-solving through sequential thought chains
An autonomous agent that conducts deep research on any data using any LLM providers
🌊 The leading agent orchestration platform for Claude. Deploy intelligent multi-agent swarms, coordinate autonomous workflows, and build conversational AI systems. Features enterprise-grade architecture, distributed swarm intelligence, RAG integration, and native Claude Code / Codex Integration
MCP Security Weekly
Get CVE alerts and security updates for com.pingfyr/pingfyr and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Connect your AI assistant to Pingfyr via MCP. Manage reminders through natural conversation.
One API call. Seven channels. Your reminders fire automatically — no external cron, no polling, no babysitting.
Available as a local npm package or as a hosted server at mcp.pingfyr.com — no local install required.
npm install -g @pingfyr/mcp
Or run directly with npx:
npx @pingfyr/mcp
Run the MCP server as a local process. Requires Node.js 18+.
Add to your MCP client config (Claude Code, Cursor, Windsurf, etc.):
{
"mcpServers": {
"pingfyr": {
"command": "pingfyr-mcp",
"env": {
"PINGFYR_API_KEY": "rm_your_api_key"
}
}
}
}
Sign up at pingfyr.com to get your API key.
No install required. Connect directly to mcp.pingfyr.com using HTTP transport. Your API key is sent as a Bearer token per request.
{
"mcpServers": {
"pingfyr": {
"type": "http",
"url": "https://mcp.pingfyr.com",
"headers": {
"Authorization": "Bearer rm_your_api_key"
}
}
}
}
HTTP transport is supported by Claude Code and Cursor. Claude Desktop requires the local (stdio) option above.
| Tool | Description |
|---|---|
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 |
create_reminder Parameters| Parameter | Required | Type | Description |
|---|---|---|---|
title | Yes | string | Title of the reminder (max 200 chars) |
fire_at | Yes | string | When to fire (ISO 8601 datetime, must be in the future) |
channel | Yes | enum | email, webhook, slack, discord, telegram, openclaw, google_calendar |
recipients | Yes | string[] | Delivery addresses (see Channels table for format per channel) |
body | No | string | Body/description of the reminder (max 2000 chars) |
repeat | No | enum | daily, weekly, monthly, custom |
cron_expression | No | string | Cron expression (required when repeat is custom) |
timezone | No | string | IANA timezone for recurring reminders (default: UTC) |
metadata | No | object | Arbitrary key-value metadata to attach to the reminder |
list_reminders Parameters| Parameter | Required | Type | Description |
|---|---|---|---|
status | No | enum | pending, processing, delivered, failed, cancelled |
limit | No | number | Max results (default: 50, max: 100) |
offset | No | number | Pagination offset (default: 0) |