formslist-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@formslist-mcpcreate a form endpoint for my newsletter signup"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
formslist-mcp
MCP (Model Context Protocol) server for FormsList — a form-backend SaaS. Point any HTML form at a FormsList endpoint and it handles submissions, email notifications, spam filtering, auto-responses, and analytics with no server code.
This server lets any MCP client (Claude Code, Claude Desktop, Cursor, ...) create form endpoints, read submissions, configure auto-responses, and generate embed snippets.
Tools
Tool | API key? | What it does |
| No | Create a working form endpoint instantly for any email — no account needed. The owner claims it later via the returned |
| Yes | Create a new form ( |
| Yes | List all forms in the account. |
| Yes | Get one form's details by |
| Yes | Get a form's submissions ( |
| Yes | Enable/configure the auto-response email ( |
| No | Pure local generator: builds an HTML |
instant_provision and get_embed_snippet work with zero config — no API key needed.
The API key (ff_sk_...) is created at https://formslist.com/account/api-keys and passed via the FORMSLIST_API_KEY environment variable. FORMSLIST_BASE_URL overrides the API base (default https://formslist.com).
Related MCP server: @restforge-dev/mcp-server
Install (until npm publish)
git clone <this-repo>
cd formflow/mcp
npm install
npm run buildThe built server is at dist/index.js.
Configure your MCP client
Claude Code
claude mcp add formslist -e FORMSLIST_API_KEY=ff_sk_xxx -- npx -y formslist-mcp(Omit -e FORMSLIST_API_KEY=... if you only need instant_provision / get_embed_snippet.)
Claude Desktop
Add to claude_desktop_config.json (macOS: ~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"formslist": {
"command": "npx",
"args": ["-y", "formslist-mcp"],
"env": {
"FORMSLIST_API_KEY": "ff_sk_xxx"
}
}
}
}Cursor
Add to .cursor/mcp.json (project) or ~/.cursor/mcp.json (global):
{
"mcpServers": {
"formslist": {
"command": "npx",
"args": ["-y", "formslist-mcp"],
"env": {
"FORMSLIST_API_KEY": "ff_sk_xxx"
}
}
}
}Notes
Transport is stdio; all HTTP uses the global
fetch(Node 18+).Non-2xx API responses are returned to the agent as
{status, error}text — never unhandled exceptions.LLM-oriented product docs: https://formslist.com/llms.txt
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityFmaintenanceMCP server for Dashform (getaiform.com) - create and manage AI-powered forms, quizzes, and surveys. Supports form creation, response collection, analytics, and AI-driven form building with 15 tools across form management, response handling, and AI operations.MIT
- AlicenseAqualityCmaintenanceMCP server that exposes RESTForge capabilities to AI agents, enabling them to set up, configure, generate code, and manage RESTForge projects through natural language.2944MIT
- Alicense-qualityCmaintenanceMCP server for the Nextcloud Forms API v3 that enables secure creation, update, cloning, and validation of forms without exposing credentials to the AI agent.MIT
- Alicense-qualityCmaintenanceMCP server for reading, editing, and publishing Google Forms with the official Google Forms API. Enables AI agents to programmatically create, modify, and manage forms and responses.MIT
Related MCP Connectors
MCP (Model Context Protocol) server for Appwrite
MCP server for interacting with the Supabase platform
Butterbase MCP server — manage your backend: schemas, auth, functions, storage, RAG, deploys.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/vaibhavjain2608/formslist-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server