CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Dashform MCP Server

makloai/mcp-server-dashform
authHTTPregistry active
Summary

Connects Claude to Dashform's form builder and service marketplace via OAuth 2.1. You get full CRUD on AI-powered forms, funnels, and quizzes, plus tools to submit and retrieve responses. The more interesting piece is the agent booking flow: search merchants and services without auth, check lead fit using Dashform's qualification AI, pull availability, and book appointments. Think "create a customer feedback form with NPS scoring" or "find yoga studios in SF and book a free trial." Uses streamable HTTP as a remote server, so no local setup. Handles dynamic client registration automatically in Claude Desktop and Cursor.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

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)

ToolDescription
get_user_infoGet current user profile (userId, organizationId, name, email)
list_organizationsList all organizations for a user
list_formsList all forms in an organization with reply counts
get_formGet full form details including config, questions, and theme
create_formCreate a new form (structured or dynamic AI type)
update_formUpdate form config, questions, endings, or theme
delete_formPermanently delete a form and all its data
create_replySubmit a new reply/response to a form

Marketplace Discovery (no authentication required)

ToolDescription
list_categoriesList marketplace service categories with merchant counts
search_merchantsSearch merchants by keyword, category, or location
search_servicesSearch services across all merchants with price filtering

Agent Booking (no authentication required)

ToolDescription
get_business_infoGet business profile for a published funnel
get_servicesList available services for a funnel
get_form_questionsGet question schema (keys, types, options) for a funnel
check_fitAI-powered lead qualification — checks if a lead matches the business criteria
get_availabilityGet booking availability and scheduling link
book_appointmentSubmit 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

EndpointURL
Authorizationhttps://getaiform.com/oauth/authorize
Tokenhttps://getaiform.com/api/auth/oauth2/token
Client Registrationhttps://getaiform.com/api/auth/oauth2/register
Resource Metadatahttps://getaiform.com/.well-known/oauth-protected-resource
MCP Discoveryhttps://getaiform.com/.well-known/mcp.json

Scopes

ScopeDescription
openidOpenID Connect identity
profileUser profile information
emailUser email address
read:formsRead forms and form data
write:formsCreate and update forms
read:submissionsRead form submissions
write:submissionsCreate form submissions
read:webhooksRead webhook configurations
offline_accessRefresh 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

  • Email: support@getaiform.com
  • Website: getaiform.com
  • Issues: GitHub Issues

License

MIT

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Registryactive
TransportHTTP
AuthRequired
UpdatedMar 31, 2026
View on GitHub