# Cabinpanda — MCP server on 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. By: mcp.ai · official Page: https://mcp.ai/cabinpanda ## Connect (MCP protocol) Remote MCP endpoint (HTTP, streamable): https://api.mcp.ai/p_cabinpanda?ms=1787293560000 Add it as a custom/remote MCP connector, then authenticate when prompted. ## REST API (no MCP client required) Every tool is also a REST endpoint, authed with a workspace API key. Discover: GET https://api.mcp.ai/api/cabinpanda/_endpoints # public; lists every endpoint Call: POST https://api.mcp.ai/api/cabinpanda/ Authorization: Bearer sk_live_… # create one at https://mcp.ai/settings/api-keys Content-Type: application/json Body: { …args } → { "ok": true, "tool": "", "result": { … } } ## Developer docs How to use (MCP or REST), markdown: https://mcp.ai/cabinpanda/skill.md Postman collection (v2.1): https://mcp.ai/cabinpanda/postman.json ## Tools - cabinpanda_create_form(name: string, type_id: string, template_id: string) — 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. - cabinpanda_delete_form(form_id: string) — 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 - cabinpanda_delete_integration(integration_id: string) — 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 ' - cabinpanda_get_form_details(form_id: string) — 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 - cabinpanda_get_integration_details(integration_id: string) — 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 - 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' - cabinpanda_list_forms(page?: integer) — Tool to retrieve a list of all forms associated with the account. Use when you need to fetch form details for management or analysis. - 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. - cabinpanda_list_submissions(page?: integer, form_id: string) — 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 - 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 - - cabinpanda_update_form(id: string, name?: string, fields?: object[], type_id?: integer, receivers?: string[], show_errors?: string, template_id?: integer, success_message?: string, submit_button_label?: string) — 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. ## Example prompts - "What can I do in Cabinpanda?" - "Show me a summary of my Cabinpanda account" ## Links Docs: https://mcp.ai/docs/mcps/cabinpanda Website: https://mcp.ai/mcps/cabinpanda