# Cabinpanda — how to use (mcp.ai)

Connect your Cabinpanda account and use 11 tools for forms and surveys straight from your AI agent. Connect with your own API key. CabinPanda is a data collection platform that enables users to create and manage online forms, facilitating efficient data gathering and analysis.

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

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

### Endpoints
- `POST https://api.mcp.ai/api/cabinpanda/create/form` — Create a new form in CabinPanda using a template. The form will be created with default fields based on the selected template. Use template_id '1' for a blank form or other IDs for themed templates.
  - body: { name: string, type_id: string, template_id: string }
- `POST https://api.mcp.ai/api/cabinpanda/delete/form` — Permanently deletes a form from CabinPanda using its unique key. This action is irreversible - use with caution. Requires the form's alphanumeric key (not the numeric ID) which can be obtained from th
  - body: { form_id: string }
- `POST https://api.mcp.ai/api/cabinpanda/delete/integration` — Deletes a form integration configuration by its ID. Use this to disconnect a specific integration (e.g., Slack, Google Sheets, Stripe) from a form. First use CABINPANDA_LIST_INTEGRATIONS to find the '
  - body: { integration_id: string }
- `POST https://api.mcp.ai/api/cabinpanda/get/form/details` — Tool to retrieve details of a specific form by its key (32-character hex string). Use when you need form metadata (fields, labels, timestamps) before processing or submitting data. Get form keys from 
  - body: { form_id: string }
- `POST https://api.mcp.ai/api/cabinpanda/get/integration/details` — Retrieve detailed information about a specific integration by its numeric ID. Returns integration configuration, category, OAuth settings, and form/team integration status. Use List Integrations first
  - body: { integration_id: string }
- `POST https://api.mcp.ai/api/cabinpanda/get/profile` — Retrieves the authenticated user's CabinPanda profile including account details, workspace information, available features, usage statistics, and billing plan. Use this action to get the current user'
- `POST https://api.mcp.ai/api/cabinpanda/list/forms` — Tool to retrieve a list of all forms associated with the account. Use when you need to fetch form details for management or analysis.
  - body: { page?: integer }
- `POST https://api.mcp.ai/api/cabinpanda/list/integrations` — Tool to retrieve a list of all integrations for the account. Use when you need to inspect available or active integrations before managing them.
- `POST https://api.mcp.ai/api/cabinpanda/list/submissions` — Retrieve all submissions for a specific form. The form_id parameter requires the 32-character hex key (not the numeric ID). First use List Forms to get available form keys, then pass one to this actio
  - body: { page?: integer, form_id: string }
- `POST https://api.mcp.ai/api/cabinpanda/list/users` — Retrieves a list of all team members (users) associated with your CabinPanda account. Use this tool to: - View all team members in your workspace - Get user IDs for other team management operations - 
- `POST https://api.mcp.ai/api/cabinpanda/update/form` — Tool to update the details of an existing form including name, template, fields and settings. Use when you need to modify form properties, update field configuration, or change form behavior.
  - body: { id: string, name?: string, fields?: object[], type_id?: integer, receivers?: string[], show_errors?: string, template_id?: integer, success_message?: string, submit_button_label?: string }

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

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