Servers

Weavely.ai Forms and Surveys
@weavely
An MCP service for generating smart forms and surveys using natural language prompts via the Weavely API, returning a live editor link for immediate customization.
A remote Model Context Protocol (MCP) server hosted at https://mcp.weavely.ai/mcp that gives AI clients full programmatic control over form creation using the Weavely API.
Features
- Auth-less remote server — no configuration required, connect via Streamable HTTP
- Exposes 13 tools covering the full form lifecycle:
create_form,add_element,update_element,remove_element,reorder_elements,add_page,remove_page,reorder_pages,set_theme,set_settings,set_logic,get_form_summary,publish_form - Supports 25+ element types: text, email, phone, rating, matrix, file upload, signature, dropdown, checkboxes, and more
- Live preview URL returned on form creation — updates in real time as the AI builds
- Built with TypeScript and the official
@modelcontextprotocol/sdk
Quickstart
{
"mcpServers": {
"weavely": {
"url": "https://mcp.weavely.ai/mcp"
}
}
}
Compatible with Claude Desktop, Claude Code, Cursor, Windsurf, Le Chat, and any client supporting Streamable HTTP. For stdio-only clients, use mcp-remote as a bridge:
{
"mcpServers": {
"weavely": {
"command": "npx",
"args": ["mcp-remote", "https://mcp.weavely.ai/mcp"]
}
}
}