# Formzil > AI-powered form builder. Create and deploy professional web forms in seconds via API or natural language. Formzil is a form creation platform. Businesses and agencies use it to build contact forms, intake forms, lead capture forms, booking forms, and survey forms. Forms are deployed instantly at a public URL and submissions are collected in a dashboard. ## Agent Integration (MCP) Formzil exposes a Model Context Protocol (MCP) server. AI agents can create and manage forms directly without any human interaction. MCP Endpoint: https://us-central1-formzil.cloudfunctions.net/mcpServer Authentication: Bearer token. Get an API key from https://formzil.com/dashboard/settings Protocol: JSON-RPC 2.0 over HTTP POST. MCP version 2024-11-05. ### Available Tools - list_forms — List all forms for the authenticated user. Optional: limit (number). - get_form — Get form details and all field definitions. Required: form_id (string). - create_form — Create a new form. Required: name (string). Optional: description, submit_button_text, success_message. - add_field — Add a field to a form. Required: form_id, type (text|email|tel|date|time|textarea|checkbox|radio), label. Optional: placeholder, required (bool), options (array of strings for checkbox/radio). - delete_form — Delete a form permanently. Required: form_id (string). ### Agent Quick Start 1. Obtain an API key from formzil.com/dashboard/settings 2. POST to https://us-central1-formzil.cloudfunctions.net/mcpServer with Authorization: Bearer 3. Send initialize, then tools/call with your chosen tool 4. Forms go live immediately at https://formzil.com/form/{publicUrlId} ## Pricing Free: 3 forms, 100 submissions/month Pro ($29/month): 15 forms, 1000 submissions/month, all features, priority support ## Field Types Supported text, email, tel, date, time, textarea, checkbox (multi-select with options), radio (single select with options) ## What Happens After Form Creation - Form is live at a public URL immediately - Submissions stored in Formzil dashboard - Form owner notified by email on each submission - Submissions exportable as CSV ## Links - Homepage: https://formzil.com - Dashboard: https://formzil.com/dashboard - Pricing: https://formzil.com/pricing - MCP endpoint: https://us-central1-formzil.cloudfunctions.net/mcpServer