# Getform — how to use (mcp.ai)

Connect your Getform account and use 2 tools for forms and surveys straight from your AI agent. Connect with your own API key. Getform is a modern form backend platform that enables developers to handle web forms and submissions without setting up a server or writing backend code.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_getform?ms=1787295780000`
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. `getform_get_form_get_submission`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/getform`
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/getform/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/getform/get/form/get/submission` — Retrieve a specific form submission by its ID from Getform. Use this tool when you have both a form_id and submission_id and need to fetch the details of that single submission. The response includes 
  - body: { form_id: string, submission_id: string }
- `POST https://api.mcp.ai/api/getform/get/form/submit/form` — Tool to submit form data and files to a Getform endpoint. Use when you need to post fields, files, optional reCAPTCHA or honeypot to a specific form ID.
  - body: { data?: object, files?: object[], _gotcha?: string, form_id: string, accept_json?: boolean, g-recaptcha-response?: string }

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

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