This MCP server integrates with the Fillout.com API, providing a bridge to leverage Fillout's form-building and data collection capabilities. Built with TypeScript and Node.js, it offers a robust foundation for creating, managing, and analyzing online forms and surveys. The server's architecture ensures type safety and efficient error handling, making it ideal for developers looking to incorporate advanced form functionality into their applications. Use cases include customer feedback collection, market research, lead generation, and data-driven decision making across various industries.
暂无评论. 成为第一个评论的人!
登录以参与讨论
Get all accessible forms. Parameters: limit (optional), offset (optional). Returns: Array of form objects.
Get detailed form information. Parameters: formId (string). Returns: Form details including questions and settings.
Create a new form. Parameters: name (string), description (optional string), questions (array). Returns: Created form object.
Get form submissions. Parameters: formId (string), filters (optional), pageSize (optional), afterDate (optional), beforeDate (optional), status (optional). Returns: Array of form responses.
Submit a new response. Parameters: formId (string), responses (array), calculations (optional). Returns: Submission confirmation.