# Timergy

Create scheduling polls (like Doodle/When2Meet) directly from AI agents. No authentication required.

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add timergy/timergy

# Browse available tools
npx -y @smithery/cli@latest tool list timergy/timergy

# Get full schema for a tool
npx -y @smithery/cli@latest tool get timergy/timergy create_poll

# Call a tool
npx -y @smithery/cli@latest tool call timergy/timergy create_poll '{}'
```

## Direct MCP Connection

Endpoint: `https://timergy--timergy.run.tools`

## Tools (5)

- `create_poll` — Create a Timergy scheduling poll (like Doodle) where participants vote on preferred time slots. Provide a title and at …
- `get_poll` — Get poll metadata and time slot options (but NOT votes). Returns title, status, deadline, location, and all available t…
- `vote_on_poll` — Submit votes on a Timergy poll. First call get_poll to retrieve the available optionId values. Each vote maps an option…
- `get_results` — Get voting results for a Timergy poll, showing who voted yes/maybe/no for each time slot. Use this after participants h…
- `finalize_poll` — Finalize a poll by picking the winning time slot. Call get_results first to find the best optionId. Uses the passphrase…

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get timergy/timergy <tool-name>
```
