Reminder MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Reminder MCP ServerRemind me to buy groceries in 30 minutes."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Reminder MCP Server
An MCP (Model Context Protocol) server that gives AI assistants reliable reminders, persistent memory, task tracking, and activity history. Built for Poke (an iMessage AI bot) and compatible with any MCP client.
Description
Poke is a great AI assistant, but its built-in reminders, tasks, and memory features had reliability issues. Rather than wait for fixes, I built this MCP server with the help of Claude Code to handle those capabilities myself. The result is a self-hosted stack that makes Poke (and any MCP-compatible client) significantly more useful.
The server exposes 20 MCP tools over Streamable HTTP, backed by a multi-user web dashboard for managing everything through a browser. It supports SQLite for simple setups and PostgreSQL for production, with optional Authentik SSO integration.
Related MCP server: Mono Memory MCP
Features
Scheduled Reminders — Time-based notifications with natural language parsing ("tomorrow at 2pm", "in 30 minutes"). Webhook push notifications when reminders trigger.
Persistent Memory — Store and recall information on demand. Tag-based organization with full-text search and optional semantic search (OpenAI embeddings + Redis). Supports scoped memories (personal, team, application, global) with dedup-on-write and explicit supersedes for session summary chains. Chat-scoped memories allow associating memories with conversation threads for context isolation (accepts any string ID format — UUIDs, CUIDs, etc.).
Task Tracking — Long-running tasks with configurable check-in intervals (default 5 min). Periodic webhook notifications until completion.
Activity History — Full audit log of all events. Query by time range, type, and action with day/week/month summaries.
Web Dashboard — React frontend with stat cards, 30-day activity charts (Recharts), calendar view for reminders, and searchable memory list.
Teams & Applications — Create teams, add members, and share memories across team members. Applications can be scoped to teams for per-agent knowledge.
Multi-User — Per-user data isolation with scoped sharing. MCP clients authenticate via API keys (user or team-scoped), the web frontend uses JWT cookies. First user is auto-promoted to admin.
SSO Integration — Optional Authentik forward auth via Traefik. Users are auto-created on first SSO login.
API Key Management — Create and revoke API keys from the web UI. Keys are SHA-256 hashed (never stored in plaintext).
Admin Panel — User management with admin role toggle. Full database backup (
.json.gzdownload) and restore.Dark Mode — System preference detection with manual light/dark/system toggle.
Dual Database Support — SQLite for development and simple deployments, PostgreSQL for production.
Webhook Notifications — Push notifications to Poke (or any endpoint) when reminders trigger or tasks need check-ins. Supports dynamic webhook registration via MCP tools for programmatic consumers (auto-unregisters after consecutive failures).
Why This Project Is Useful
Poke's built-in features are unreliable — Reminders don't always fire, memory is inconsistent, and task tracking is limited. This server replaces all of that with a robust, self-hosted alternative.
Works with any MCP client — Not locked into Poke. Works with Claude Desktop, any MCP-compatible tool, or the included web dashboard.
You own your data — Self-hosted with full backup/restore. No vendor lock-in, no third-party data storage.
Multi-user ready — Supports multiple users with data isolation, SSO, and admin controls. Run it for yourself or share it with others.
Production-grade — PostgreSQL, Docker, health checks, Traefik integration, and Authentik SSO. Not a toy — this runs in production.
MCP Tools (20)
Tool | Description |
| Schedule a reminder (supports natural language times) |
| List pending or all reminders |
| Mark a reminder as completed |
| Cancel a pending reminder |
| Store a memory with optional scope, classification, tags, chat_id, and supersedes |
| Retrieve memories across scopes with search/tag/scope/chat_id filter |
| Remove a memory (scope-based permission check) |
| Copy a memory to a different scope (e.g., personal to team) |
| List available memory scopes (personal, teams, apps, global) |
| Begin tracking a long-running task |
| Get status of a specific task |
| List tasks with optional status filter |
| Mark a task as completed |
| Update task status or add notes |
| Register a URL to receive push notifications (with optional API key and event filter) |
| Remove a registered webhook URL |
| List all registered webhooks for this user |
| Get all due reminders and tasks needing check-in |
| Query activity history by time range |
| Get summary of recent activity |
Getting Started
Option 1: Standalone with SQLite
The simplest setup — no external database required.
# Clone and build
git clone https://github.com/sj7trunks/reminder-mcp.git
cd reminder-mcp
npm install
npm run build
# Generate secrets
export API_KEY=$(openssl rand -hex 32)
export SECRET_KEY=$(openssl rand -hex 32)
# Run in HTTP mode
API_KEY=$API_KEY SECRET_KEY=$SECRET_KEY npm run start:http
# Verify
curl http://localhost:3000/healthThe SQLite database is created automatically at ./data/reminder.db.
For local use with Claude Desktop (stdio mode), add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"reminder": {
"command": "node",
"args": ["/path/to/reminder-mcp/dist/index.js"],
"env": {
"DATABASE_PATH": "/path/to/reminder-mcp/data/reminder.db",
"DEFAULT_TIMEZONE": "America/Los_Angeles"
}
}
}
}Option 2: Production with PostgreSQL & Docker
# Generate secrets
export API_KEY=$(openssl rand -hex 32)
export SECRET_KEY=$(openssl rand -hex 32)
export PG_PASSWORD=$(openssl rand -hex 16)
echo "Save these values:"
echo " API_KEY=$API_KEY"
echo " SECRET_KEY=$SECRET_KEY"
echo " PG_PASSWORD=$PG_PASSWORD"Add to your docker-compose.yml:
services:
reminder-mcp-postgres:
image: postgres:16-alpine
container_name: reminder-mcp-postgres
restart: unless-stopped
environment:
- POSTGRES_USER=reminder
- POSTGRES_PASSWORD=${PG_PASSWORD}
- POSTGRES_DB=reminder_mcp
volumes:
- reminder-mcp-pg-data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U reminder -d reminder_mcp"]
interval: 10s
timeout: 5s
retries: 5
start_period: 10s
reminder-mcp:
build:
context: ./reminder-mcp
dockerfile: Dockerfile
container_name: reminder-mcp
restart: unless-stopped
environment:
- NODE_ENV=production
- PORT=3000
- HOST=0.0.0.0
- API_KEY=${API_KEY}
- SECRET_KEY=${SECRET_KEY}
- DATABASE_TYPE=postgres
- DATABASE_URL=postgresql://reminder:${PG_PASSWORD}@reminder-mcp-postgres:5432/reminder_mcp
- DEFAULT_TIMEZONE=America/Los_Angeles
# Optional: Push notifications
# - WEBHOOK_URL=https://poke.com/api/v1/inbound-sms/webhook
# - WEBHOOK_API_KEY=your-poke-api-key
# Optional: Authentik SSO
# - AUTHENTIK_HOST=https://your-authentik-domain.com
depends_on:
reminder-mcp-postgres:
condition: service_healthy
ports:
- "3000:3000"
healthcheck:
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:3000/health"]
interval: 30s
timeout: 3s
retries: 3
start_period: 10s
volumes:
reminder-mcp-pg-data:
driver: localdocker compose up -d
curl http://localhost:3000/healthConfiguring Poke
Open Poke > Settings > Integrations > New Integration
Fill in:
Name:
RemindersServer URL:
https://your-domain.com/mcpAPI Key: Your generated API key
Create the integration
For push notifications (so Poke messages you when reminders trigger):
Go to Poke > Settings > Advanced and generate a webhook API key
Set
WEBHOOK_URLandWEBHOOK_API_KEYin your environment
Important: Poke requires SSE (Server-Sent Events) format. Configure your MCP client to accept text/event-stream in addition to application/json.
Optional: Semantic Search
Enable AI-powered semantic search for memories using OpenAI embeddings and Redis:
# Set environment variables
export OPENAI_API_KEY=sk-...
export REDIS_URL=redis://localhost:6379
# Or add to docker-compose.yml
environment:
- OPENAI_API_KEY=${OPENAI_API_KEY}
- REDIS_URL=redis://redis:6379Semantic search uses text-embedding-3-small (1536 dimensions) stored in Redis with vector similarity search. Embeddings are generated automatically in the background when memories are created or updated.
Environment Variables
Variable | Required | Default | Description |
| Yes (HTTP) | - | Seed API key (hashed on first run) |
| Yes | - | JWT signing secret |
| No |
| HTTP server port |
| No |
| HTTP server bind address |
| No |
|
|
| No |
| SQLite file path |
| No | - | PostgreSQL connection string |
| No |
| Default timezone |
| No | - | Push notification endpoint |
| No | - | Bearer token for webhook |
| No | - | Authentik base URL for SSO |
| No | - | OpenAI API key for semantic search |
| No | - | Redis URL for vector storage (semantic search) |
| No |
|
|
Project Structure
reminder-mcp/
├── src/
│ ├── index.ts # stdio transport entry point
│ ├── http.ts # HTTP transport entry point (Express app)
│ ├── server.ts # MCP server & tool registration
│ ├── config/
│ │ └── index.ts # Zod-validated environment config
│ ├── types/
│ │ └── context.ts # McpContext interface for scope/auth
│ ├── db/
│ │ ├── index.ts # Knex connection (SQLite/PostgreSQL)
│ │ ├── migrations/ # Database migrations (001-013)
│ │ └── models/ # Zod schemas (User, ApiKey, Team, Memory, etc.)
│ ├── middleware/
│ │ └── auth.ts # JWT, API key, Authentik SSO middleware
│ ├── routes/
│ │ ├── auth.ts # Register, login, logout, session
│ │ ├── keys.ts # API key management
│ │ ├── reminders.ts # Reminder CRUD
│ │ ├── memories.ts # Memory CRUD with search + scope filtering
│ │ ├── tasks.ts # Task CRUD
│ │ ├── stats.ts # Dashboard statistics
│ │ ├── admin.ts # User management, backup/restore
│ │ ├── teams.ts # Team CRUD + member management
│ │ └── applications.ts # Application CRUD
│ ├── services/
│ │ ├── scheduler.ts # Background job scheduler (60s poll)
│ │ ├── notifier.ts # Webhook notifications (Poke format)
│ │ ├── timezone.ts # Timezone conversion & parsing
│ │ ├── embedding.ts # OpenAI embeddings (text-embedding-3-small)
│ │ └── embedding-worker.ts # Background worker for generating embeddings
│ ├── tools/
│ │ ├── reminders.ts # Reminder MCP tools
│ │ ├── memory.ts # Memory MCP tools
│ │ ├── tasks.ts # Task MCP tools
│ │ └── history.ts # Activity query tools
│ └── resources/
│ └── status.ts # Server status resource
├── frontend/
│ ├── src/
│ │ ├── main.tsx # React entry point
│ │ ├── App.tsx # Router with auth guards
│ │ ├── api/client.ts # API client (fetch + credentials)
│ │ ├── components/
│ │ │ └── Layout.tsx # App shell with nav & theme toggle
│ │ ├── contexts/
│ │ │ └── ThemeContext.tsx # Dark/light/system theme
│ │ └── pages/
│ │ ├── Login.tsx # Login form + SSO button
│ │ ├── Register.tsx # Registration form
│ │ ├── Dashboard.tsx # Stats + activity chart
│ │ ├── Reminders.tsx # Calendar view
│ │ ├── Memories.tsx # Searchable memory list with scope filter
│ │ ├── Teams.tsx # Team management + members
│ │ ├── Settings.tsx # API keys (user/team) + theme
│ │ └── Admin.tsx # User mgmt + backup/restore
│ ├── vite.config.ts # Vite config with dev proxy
│ └── tailwind.config.js # Tailwind CSS config
├── Dockerfile # Multi-stage Docker build
├── docker-compose.yml # Standalone Docker setup
├── .env.example # Environment variable template
├── CLAUDE.md # Development guide for AI assistants
└── LICENSE # MIT LicenseTech Stack
Runtime: Node.js 20 + TypeScript (ESM)
MCP:
@modelcontextprotocol/sdk(Streamable HTTP transport)Backend: Express 5, Knex.js, Zod
Frontend: React 18, Vite, Tailwind CSS, React Query, Recharts
Database: SQLite (better-sqlite3) or PostgreSQL
Auth: JWT (jsonwebtoken), bcrypt, SHA-256 API key hashing
SSO: Authentik forward auth via Traefik
Getting Help
If you encounter issues or have questions:
Open an Issue — Bug reports and feature requests
Discussions — Questions and general discussion
Credits
Built by Benjamin Coles with Claude Code.
License
MIT — see LICENSE.
Security Notice
This project was built as a personal tool and has not undergone a formal security audit. If you deploy this in production:
Generate strong, unique values for
API_KEYandSECRET_KEY(openssl rand -hex 32)Use HTTPS (TLS) for all traffic — never expose the API over plain HTTP
Review the authentication middleware (
src/middleware/auth.ts) for your threat modelKeep dependencies updated (
npm audit)Consider network-level access controls (firewall rules, VPN) in addition to application-level auth
The admin backup/restore endpoints can export and overwrite all data — restrict admin access carefully
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sj7trunks/reminder-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server