An official Model Context Protocol (MCP) server for Formbuild.
This server allows AI coding assistants like Claude Desktop and Cursor to securely read your forms, create new forms, and fetch submissions directly from your Formbuild account.
This server exposes three powerful tools to your AI agent:
list_forms: Retrieve a list of all forms in your Formbuild account.get_submissions: Fetch the latest form submissions for analysis and summarization.create_form: Autonomously create a new form via the AI, returning the newform_idfor immediate integration into your source code.
- Make sure you have Node.js installed on your machine.
- Get a Formbuild API Key from your dashboard.
- Add the following to your
claude_desktop_config.json:
{
"mcpServers": {
"formbuild": {
"command": "npx",
"args": ["-y", "@formbuild/mcp-server"],
"env": {
"FORMBUILD_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}- Restart Claude Desktop. You will now see the Formbuild tools available for the AI to use!
Once connected, try asking Claude:
- "I'm building a contact page. Please create a form in my Formbuild account for it and write the React code."
- "Fetch the last 50 submissions from my 'Waitlist' form and summarize what people are saying."
- "List all my forms and tell me their IDs."