Skip to main content
The FormHug MCP Server lets AI assistants manage your forms and data through natural language. Built on the open Model Context Protocol, it turns any MCP-compatible client into a full FormHug interface — create forms, edit fields, read submissions, and submit entries without opening the dashboard. Server URL: https://formhug.ai/mcp

Create Forms

Describe what you need — AI generates fields and creates the form instantly

Edit Forms

Add or remove fields, update names and descriptions

Read Submissions

Browse, search, and retrieve form entries

Submit Entries

Post new entries to any form programmatically

Connect Your Client

Claude Desktop

  1. Open Claude Desktop → Settings → Developer → Edit Config
  2. Add FormHug under mcpServers:
{
  "mcpServers": {
    "formhug": {
      "type": "http",
      "url": "https://formhug.ai/mcp"
    }
  }
}
  1. Restart Claude Desktop and sign in when prompted.

Cursor

  1. Open Cursor → Settings → MCP Servers → Add Server
  2. Paste the server URL: https://formhug.ai/mcp
  3. Authorize when prompted.

Other MCP Clients

Any client that supports the Model Context Protocol can connect using the server URL above. The server uses standard HTTP transport.

Available Tools

ToolWhat It Does
list_formsList your forms, with optional name filter
get_formGet form details including all field definitions and api_codes
preview_formGet a readable summary of a form’s structure
create_formCreate a new form, optionally with fields defined at the same time
update_formUpdate a form’s name or description
delete_formPermanently delete a form and all its data
add_fieldsAppend new fields to an existing form
remove_fieldRemove a field by its api_code
list_entriesPage through a form’s submissions
get_entryRetrieve a single entry by serial number
submit_entrySubmit a new entry to a form

Example Prompts

Once connected, give your AI assistant natural language instructions: Building and editing forms
  • “Create a customer feedback form with a star rating, email, and comment field”
  • “Add a required phone number field to my Event Registration form”
  • “Show me all my forms”
  • “What fields does my Contact Us form have?”
Reading submissions
  • “List the last 20 submissions for my Contact Us form”
  • “Show me the most recent entry on my survey”
  • “Get entry number 5 from my registration form”
Managing forms
  • “Rename the form called Test to Customer Feedback 2025”
  • “Delete the form called Old Test Form”
Submitting entries
  • “Submit a test entry to my Contact form — name: Jane Smith, email: jane@example.com

Submitting Entries

When using submit_entry, call get_form first to get each field’s api_code. Then pass values keyed by api_code:
Field TypeValue Format
TextField, TextArea, EmailField, MobileFieldString
NumberFieldNumber
RadioButton, DropDownChoice api_code string
CheckBoxArray of choice api_code strings
DateTimeFieldISO 8601 datetime string
RatingFieldInteger (1–5 by default)
NpsFieldInteger (0–10)
AddressField{"province": "", "city": "", "district": "", "detail": ""}
The same field types are available when creating forms or adding fields with create_form and add_fields: TextField · TextArea · EmailField · MobileField · NumberField · RadioButton · CheckBox · DropDown · DateTimeField · RatingField · NpsField · AddressField · LinkField · AttachmentField