# Let's Clarify

Your AI agent creates a form via API — one recipient for a quick approval, or thousands for a company-wide survey. Each person gets a unique URL that you send through your own channels: email, Slack,…

## Quick Start

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

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

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

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

## Direct MCP Connection

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

## Tools (6)

- `register` — Register for a new API key. Returns the key (shown only once). No authentication required.
- `create_form` — Create a new clarification form with a schema defining the fields. Returns form URLs and recipient UUIDs.
- `add_recipients` — Add additional recipient slots to an existing form. Returns new recipient UUIDs.
- `get_summary` — Get a quick summary of form status: total, submitted, and pending recipient counts.
- `get_results` — Fetch form submissions with cursor-based pagination. Returns recipient statuses and response data.
- `delete_form` — Permanently delete a form, all its recipients, submissions, and uploaded files.

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