@timergy/mcp
MCP server for Timergy - the scheduling poll app. Create polls, vote on time slots, and finalize meetings directly from AI agents like Claude, ChatGPT, and Gemini.
No authentication required. Works out of the box.
What is Timergy?
Timergy is a scheduling poll service (like Doodle or When2Meet). You create a poll with time slot options, share it with participants, everyone votes on their availability, and you pick the best time.
Quick Start
Claude Desktop / Claude Code
Add to your MCP config (~/.claude/claude_desktop_config.json or project .mcp.json):
{
"mcpServers": {
"timergy": {
"command": "npx",
"args": ["@timergy/mcp"]
}
}
}Then just ask:
"Create a poll for dinner next Friday or Saturday evening"
Other MCP Clients
Any MCP-compatible client can use this server. The transport is stdio.
Tools
create_poll
Create a scheduling poll with time slot options.
"Create a poll called 'Team Lunch' with slots on Monday 12-13 and Tuesday 12-13"Returns: poll URL (to share), passphrase (for admin access), option IDs.
get_poll
Get poll details and time slot options (no votes). Use this to retrieve option IDs before voting or finalizing.
"Show me the details of poll abc-123"vote_on_poll
Submit votes on a poll. Each vote maps a time slot to yes/maybe/no.
"Vote 'yes' for Monday and 'no' for Tuesday on poll abc-123 as Max"get_results
See who voted and which time slots are most popular.
"Show me the results for poll abc-123"finalize_poll
Lock in the winning time slot. Notifies participants who provided an email.
"Finalize poll abc-123 with the Monday slot"Workflow
1. create_poll -> Get poll URL + passphrase
2. Share URL -> Send to participants
3. get_results -> See who voted yes/maybe/no
4. finalize_poll -> Pick the best time, lock it inThe passphrase from step 1 is automatically remembered for step 4 within the same session.
REST API
The MCP server calls the Timergy Open API under the hood. You can also use the API directly:
Method | Endpoint | Description |
|
| Create a poll |
|
| Get poll details |
|
| Get time slots |
|
| Get vote results |
|
| Submit votes |
|
| Get admin token |
|
| Finalize poll |
Base URL: https://api.timergy.com
OpenAPI spec: https://api.timergy.com/api/open/openapi.json
Configuration
Environment Variable | Default | Description |
|
| API base URL |
For local development:
{
"mcpServers": {
"timergy": {
"command": "npx",
"args": ["@timergy/mcp"],
"env": { "TIMERGY_API_URL": "http://localhost:4000" }
}
}
}Rate Limits
Action | Limit |
Create poll | 5 per hour |
Vote | 20 per minute |
Get poll/results | 60 per minute |
Admin token | 5 per 10 minutes |
Finalize | 3 per hour |
License
MIT
This server cannot be installed
Resources
Looking for Admin?
Admins can modify the Dockerfile, update the server description, and track usage metrics. If you are the server author, to access the admin panel.