MeowForm

Agent-friendly forms from JSON Schema

Human Usable Site

A clean, responsive interface for users to easily fill out and submit forms generated directly from schema definitions.

Manual Form & Survey Creation

Quickly spin up surveys, feedback forms, and configuration tools without writing any frontend code.

Automatic UI Generation

Smartly maps JSON Schema types to UI elements: enums become dropdowns/radios, arrays become checkboxes, and booleans become toggles.

MCP Integration (Model Context Protocol)

MeowForm acts as a seamless bridge between AI Agents and humans. By leveraging the Model Context Protocol, AI agents can dynamically request structured input from humans, generating a tailored MeowForm link. The agent's workflow pauses until the human completes the form, at which point the validated JSON data is returned directly back to the agent.

Getting Started

Provide a JSON schema to define your form structure. For example:

{
  "type": "object",
  "properties": {
    "name": { "type": "string", "description": "Your Name" },
    "newsletter": { "type": "boolean", "description": "Subscribe?" }
  },
  "required": ["name"]
}

Initializing...

Error

Agent Request

Response submitted successfully! The agent workflow will now resume.