timergy-app/timergy
MCP server for Timergy - create scheduling polls from AI agents like Claude, ChatGPT, and Gemini. No auth required.
[](https://smithery.ai/server/timergy/timergy)
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.
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.
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"
smithery mcp add timergy/timergyOr connect directly via https://timergy--timergy.run.tools
Any MCP-compatible client can use this server. Supports stdio (local) and Streamable HTTP (remote at https://api.timergy.com/mcp).
create_pollCreate a scheduling poll with time slot options.
| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | title | string | yes | Poll title | | options | array | yes | Time slots ({start, end} in ISO 8601 with timezone) | | description | string | no | Poll description | | deadline | string | no | Voting deadline (ISO 8601) | | location | string | no | Event location | | creatorName | string | no | Name shown as poll creator |
"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_pollGet poll details and time slot options (no votes). Use this to retrieve option IDs before voti
Loading reviews...