Netlify MCP Server

manage-form

Manage form submissions

Input Schema

NameRequiredDescriptionDefault
actionYesAction to perform
formIdYesForm ID
siteIdYesSite ID or name

Input Schema (JSON Schema)

{ "properties": { "action": { "description": "Action to perform", "enum": [ "enable", "disable", "delete" ], "type": "string" }, "formId": { "description": "Form ID", "type": "string" }, "siteId": { "description": "Site ID or name", "type": "string" } }, "required": [ "siteId", "formId", "action" ], "type": "object" }