@remindlo/mcp-server
v1.0.6
Published
MCP server for Remindlo SMS Reminder API
Maintainers
Readme
Remindlo MCP Server
MCP (Model Context Protocol) server for Remindlo SMS Reminder API. Enables Claude Desktop and other AI assistants to manage contacts and SMS campaigns directly.
Installation
Claude Desktop
Add to your claude_desktop_config.json:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"remindlo": {
"command": "npx",
"args": ["@remindlo/mcp-server"],
"env": {
"REMINDLO_API_KEY": "sk_live_your_key_here"
}
}
}
}Get your API key from Remindlo Dashboard → Integrations.
Manual Installation
npm install -g @remindlo/mcp-serverThen configure Claude Desktop to use the global install:
{
"mcpServers": {
"remindlo": {
"command": "remindlo-mcp",
"env": {
"REMINDLO_API_KEY": "sk_live_your_key_here"
}
}
}
}Available Tools
list_campaigns
List all SMS campaigns available in your Remindlo account.
Example: "What campaigns do I have in Remindlo?"upsert_contact
Create or update a contact. If a contact with the same phone or email exists, it will be updated.
Required (at least one):
phone- Phone in E.164 format (e.g., +447912345678)email- Email address
Optional:
first_name- First namelast_name- Last namemarketing_consent- Whether contact agreed to receive SMSnext_due_at- Next appointment date (ISO 8601)campaign_ids- Array of campaign IDs to enroll contacttags- Array of tagsnote- Notes about the contact
Example: "Add John Smith, phone +447912345678, to the Birthday campaign"get_contact
Get details of a specific contact by ID, phone, or email.
Required (at least one):
contact_id- Contact UUIDphone- Phone number in E.164 formatemail- Email address
Example: "Look up the contact with phone +447912345678"list_contacts
Search and list contacts with filtering and pagination.
All parameters are optional:
search- Search in name, phone, emaillimit- Max results (default 50, max 100)offset- Skip N results for paginationhas_phone- Only contacts with phone numbersmarketing_consent- Filter by consent statusnext_due_before/next_due_after- Filter by appointment datesort_by- Field to sort by (created_at, updated_at, next_due_at, first_name)sort_order- asc or desc
Example: "Show me all contacts due this week"Example Conversations
Adding a contact with campaign enrollment
You: Add Maria Garcia, phone +34612345678, email [email protected] to the Appointment Reminder campaign
Claude:
- Lists campaigns to find "Appointment Reminder" ID
- Creates/updates contact with campaign enrollment
- Confirms: "Contact created: Maria Garcia (ID: xxx) enrolled in Appointment Reminder campaign"
Finding contacts
You: Find all contacts due for appointments next week
Claude: Uses list_contacts with next_due_after and next_due_before to show matching contacts.
Looking up a specific contact
You: What info do we have for +447912345678?
Claude: Uses get_contact to retrieve and display full contact details including enrolled campaigns.
Phone Number Format
Phone numbers must be in E.164 international format:
- UK: +447912345678
- Poland: +48607123456
- US: +12025551234
- Spain: +34612345678
API Documentation
Full documentation: https://www.remindlo.co.uk/help/mcp-server-claude-integration
Troubleshooting
"REMINDLO_API_KEY environment variable is required"
Make sure you've added your API key to the Claude Desktop config:
{
"mcpServers": {
"remindlo": {
"command": "npx",
"args": ["@remindlo/mcp-server"],
"env": {
"REMINDLO_API_KEY": "sk_live_your_key_here"
}
}
}
}"Invalid API key"
- Check that your API key starts with
sk_live_orsk_test_ - Verify the key in your Remindlo dashboard
- Make sure the key hasn't expired
Tools not appearing in Claude
- Restart Claude Desktop after config changes
- Check the config file path is correct for your OS
- Verify JSON syntax in claude_desktop_config.json
Support
- Email: [email protected]
- Documentation: https://www.remindlo.co.uk/help/mcp-server-claude-integration
License
MIT
