Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
makloai avatar

Dashform MCP Server

  • Updated March 31, 2026
  • makloai/mcp-server-dashform

Dashform MCP Server is a Developer Tools MCP server that lets agents build and manage AI-powered Dashform forms, funnels, and quizzes over remote HTTP.

About

Dashform MCP Server (io.github.makloai/mcp-server-dashform) connects AI assistants to Dashform on getaiform.com so developers can build and manage AI-powered forms, funnels, and quizzes through MCP instead of clicking through a separate admin UI. The hosted remote uses streamable HTTP at getaiform.com/api/mcp and expects an OAuth 2.1 bearer token obtained via authorization code flow with dynamic client registration, which is typical for SaaS-backed MCP bridges you adopt during validate/landing when you need fast lead capture. After validation, the same assets support launch/distribution for campaigns and grow/content for quizzes and interactive lead magnets. It suits agent-first workflows in Claude Code or Cursor when you are iterating copy and funnel structure conversationally. It is not a replacement for your marketing site codebase or analytics stack—you still connect domains, tracking, and compliance separately.

  • Remote streamable-http MCP at https://getaiform.com/api/mcp
  • OAuth 2.1 bearer Authorization header with dynamic client registration flow
  • Build and manage AI-powered forms, funnels, and quizzes from the agent
  • Version 1.0.0 with GitHub repo makloai/mcp-server-dashform
  • Product site getaiform.com / Dashform branding in catalog title

Dashform MCP Server by the numbers

  • Data as of Jul 7, 2026 (Skillselion catalog sync)
terminal
claude mcp add --transport http mcp-server-dashform https://getaiform.com/api/mcp --header "Authorization: Bearer YOUR_TOKEN"

Add your badge

Show developers this MCP server is listed on Skillselion. Paste this into your README.

Listed on Skillselion
TransportHTTP
AuthRequired
Last updatedMarch 31, 2026
Repositorymakloai/mcp-server-dashform

What it does

Wire Dashform into your agent so it can create and manage AI forms, funnels, and quizzes on getaiform.com without manual dashboard work.

Who is it for?

Best when you're validating ideas with AI-led forms and funnels and already use or plan to use Dashform on getaiform.com.

Skip if: Fully custom form UI embedded in your own React app without Dashform, or teams that cannot use OAuth remote MCP.

What you get

After OAuth setup, your agent can create and manage Dashform assets remotely so validation landing experiments ship faster from chat.

  • Agent-managed Dashform forms, funnels, and quizzes
  • Faster validate/landing experiments without constant dashboard context switching
  • Reusable capture assets for launch distribution and grow content tests

By the numbers

  • Server version 1.0.0
  • Remote endpoint https://getaiform.com/api/mcp with streamable-http transport
  • GitHub repository github.com/makloai/mcp-server-dashform
README.md

Dashform MCP Server

Connect AI assistants to Dashform — build and manage AI-powered forms, funnels, quizzes, and lead qualification workflows through the Model Context Protocol.

Features

  • Form Management — Create, read, update, and delete forms and AI funnels programmatically
  • Reply Collection — Submit and retrieve form responses
  • AI Lead Qualification — Use built-in AI to check if a lead is a good fit for a business
  • Service Marketplace — Search merchants, services, and categories
  • Booking — Check availability and book appointments through AI agents
  • OAuth 2.1 — Secure authentication with dynamic client registration

Quickstart

Dashform MCP is a hosted remote server. No local installation is required — just add the endpoint URL to your MCP client.

Endpoint: https://getaiform.com/api/mcp

Transport: Streamable HTTP

Authentication: OAuth 2.1 with dynamic client registration (RFC 7591)

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "dashform": {
      "url": "https://getaiform.com/api/mcp"
    }
  }
}

Claude Desktop will handle OAuth authorization automatically.

Cursor

Add to your Cursor MCP settings (.cursor/mcp.json):

{
  "mcpServers": {
    "dashform": {
      "url": "https://getaiform.com/api/mcp"
    }
  }
}

VS Code / GitHub Copilot

Add to your VS Code settings (.vscode/mcp.json):

{
  "servers": {
    "dashform": {
      "url": "https://getaiform.com/api/mcp"
    }
  }
}

Windsurf

Add to your ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "dashform": {
      "serverUrl": "https://getaiform.com/api/mcp"
    }
  }
}

MCP Inspector

npx @modelcontextprotocol/inspector --url https://getaiform.com/api/mcp

Tools

Form Management (requires authentication)

Tool Description
get_user_info Get current user profile (userId, organizationId, name, email)
list_organizations List all organizations for a user
list_forms List all forms in an organization with reply counts
get_form Get full form details including config, questions, and theme
create_form Create a new form (structured or dynamic AI type)
update_form Update form config, questions, endings, or theme
delete_form Permanently delete a form and all its data
create_reply Submit a new reply/response to a form

Marketplace Discovery (no authentication required)

Tool Description
list_categories List marketplace service categories with merchant counts
search_merchants Search merchants by keyword, category, or location
search_services Search services across all merchants with price filtering

Agent Booking (no authentication required)

Tool Description
get_business_info Get business profile for a published funnel
get_services List available services for a funnel
get_form_questions Get question schema (keys, types, options) for a funnel
check_fit AI-powered lead qualification — checks if a lead matches the business criteria
get_availability Get booking availability and scheduling link
book_appointment Submit a lead record and book an appointment

Authentication

Dashform MCP uses OAuth 2.1 with the Authorization Code flow and supports dynamic client registration (RFC 7591). This means MCP clients like Claude Desktop and Cursor can automatically register and authenticate without manual API key setup.

OAuth Endpoints

Endpoint URL
Authorization https://getaiform.com/oauth/authorize
Token https://getaiform.com/api/auth/oauth2/token
Client Registration https://getaiform.com/api/auth/oauth2/register
Resource Metadata https://getaiform.com/.well-known/oauth-protected-resource
MCP Discovery https://getaiform.com/.well-known/mcp.json

Scopes

Scope Description
openid OpenID Connect identity
profile User profile information
email User email address
read:forms Read forms and form data
write:forms Create and update forms
read:submissions Read form submissions
write:submissions Create form submissions
read:webhooks Read webhook configurations
offline_access Refresh token for long-lived sessions

MCP Discovery

The server exposes a discovery endpoint at /.well-known/mcp.json that returns the server manifest, including all available tools and the endpoint URL.

curl https://getaiform.com/.well-known/mcp.json

Use Cases

  • Build forms with natural language — "Create a customer feedback form with a rating scale and open-ended questions"
  • Manage forms at scale — List, update, or delete forms across organizations
  • Collect responses — Submit test data or integrate with automated pipelines
  • AI-powered lead qualification — "Check if this lead is a good fit for my consulting business"
  • Service discovery — "Find yoga studios in San Francisco that offer private sessions"
  • Appointment booking — "Book a free consultation with the nearest available therapist"

Support

License

MIT

Recommended MCP Servers

How it compares

SaaS form-and-funnel MCP connector, not a static HTML landing generator skill.

FAQ

Who is Dashform MCP Server for?

Developers and marketers using AI coding agents who want Dashform forms, funnels, and quizzes manageable via MCP during validation and growth experiments.

When should I use Dashform MCP Server?

Use it when you are launching landing quizzes, waitlists, or funnels to test demand, or when you need agent-driven edits to those Dashform assets before and after public launch.

How do I add Dashform MCP Server to my agent?

Complete OAuth 2.1 authorization with dynamic client registration for getaiform.com, add the remote server https://getaiform.com/api/mcp with your bearer token in Authorization, and register io.github.makloai/mcp-server-dashform in your MCP client.

Developer Toolscontentlifecycle

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.