FormFor
FreeNot checkedCreates and manages forms with AI-powered field suggestions and submission handling.
About
Creates and manages forms with AI-powered field suggestions and submission handling.
README
Remote MCP (Model Context Protocol) server for FormFor. Runs on Cloudflare Workers as a McpAgent Durable Object with SSE transport. Lets any MCP-compatible AI client create forms, collect data, and check responses.
Quick Start
Connect any MCP client to:
https://mcp.formfor.ai/sse
With header:
Authorization: Bearer ff_live_...
Tools
| Tool | Description |
|---|---|
formfor_ask |
Ask a human a yes/no question. Sends an email, returns { approved: true/false }. |
formfor_collect |
Collect structured data via a multi-field form. Supports 14 field types. |
formfor_check |
Check if a form has been completed and retrieve the response data. |
formfor_list |
List recent forms with optional status filter. |
formfor_ask
{
"question": "Deploy to production?",
"to": "[email protected]",
"context": "All tests passing on staging",
"expires": "4h"
}
formfor_collect
{
"title": "Bug Report Triage",
"to": "[email protected]",
"fields": [
{ "id": "severity", "type": "select", "label": "Severity", "options": ["P0", "P1", "P2"] },
{ "id": "description", "type": "textarea", "label": "Description", "required": true }
],
"expires": "24h"
}
formfor_check
{
"form_id": "form_abc123"
}
formfor_list
{
"status": "pending",
"limit": 10
}
Architecture
MCP Client --> SSE (/sse) --> FormForMCP (McpAgent Durable Object)
|
+-- API (service binding) -- form CRUD
+-- Agents (service binding) -- agent state
+-- D1 -- API key auth
Auth Flow
- MCP client connects to
/ssewithAuthorization: Bearer ff_live_... - Worker authenticates the API key against D1 (SHA-256 hash lookup)
- Auth header is captured in
onConnectand forwarded to API service binding on every tool call
Transport
SSE (Server-Sent Events) via the Agents SDK McpAgent.serveSSE(). CORS is configured for cross-origin access.
Development
npm install
npm run dev
Deployment
npm run deploy
Environment Variables
Bindings
| Binding | Type | Description |
|---|---|---|
MCP_AGENT |
Durable Object | FormForMCP class |
DB |
D1 | API key authentication |
API |
Service | formfor-api worker |
AGENTS |
Service | formfor-agents worker |
License
MIT
Installing FormFor
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/formforai/mcpFAQ
Is FormFor MCP free?
Yes, FormFor MCP is free — one-click install via Unyly at no cost.
Does FormFor need an API key?
No, FormFor runs without API keys or environment variables.
Is FormFor hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install FormFor in Claude Desktop, Claude Code or Cursor?
Open FormFor on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
by modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
by xuzexin-hzCompare FormFor with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All ai MCPs
