# Paperform — how to use (mcp.ai)

Connect your Paperform account and use 5 tools for forms and surveys straight from your AI agent. Connect with your own API key. Paperform is a flexible online form builder that combines beautiful design with serious digital smarts.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_paperform?ms=1787293440000`
Add it as a custom/remote MCP connector in your client (Claude, Cursor, VS Code…), then authenticate when prompted. Once connected, ask the agent to use the server's tools (e.g. `paperform_get_space`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/paperform`
Auth: `Authorization: Bearer sk_live_…` — create a workspace API key at https://mcp.ai/settings/api-keys
Discover endpoints: `GET https://api.mcp.ai/api/paperform/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/paperform/get/space` — Tool to retrieve a space by ID from Paperform. Use when you need to get detailed information about a specific space.
  - body: { id: string }
- `POST https://api.mcp.ai/api/paperform/get/space/forms` — Tool to retrieve forms in a space from Paperform. Use when you need to list all forms accessible by the authorized user within a specific space. This is a Business API only feature.
  - body: { id: string }
- `POST https://api.mcp.ai/api/paperform/list/forms` — Tool to list all forms accessible by the authorized user. Use when you need to retrieve available forms from Paperform.
  - body: { skip?: integer, limit?: integer }
- `POST https://api.mcp.ai/api/paperform/list/spaces` — Tool to list all spaces accessible by the authorized user. Use when you need to retrieve available spaces from Paperform.
  - body: { skip?: integer, limit?: integer }
- `POST https://api.mcp.ai/api/paperform/list/translations` — Tool to list all translations accessible by the authorized user. Use when you need to retrieve available translations from Paperform.
  - body: { skip?: integer, limit?: integer }

## Example prompts
- "What can I do in Paperform?"
- "Show me a summary of my Paperform account"

## More
- Page: https://mcp.ai/paperform
- Agent spec (llms.txt): https://mcp.ai/paperform/llms.txt
- Postman collection: https://mcp.ai/paperform/postman.json
