This MCP server implementation provides comprehensive tools for working with Netlify through their CLI. Developed by DynamicEndpoints, it enables deploying sites, managing deployments, handling environment variables, DNS settings, serverless functions, forms, plugins, and webhooks. Built using TypeScript and integrating the Model Context Protocol SDK, the server focuses on secure API key management and robust error handling. It offers type-safe parameter validation using Zod and is designed for easy setup within various MCP environments. The implementation is particularly useful for AI applications that need to automate web deployment tasks, manage serverless architectures, or integrate continuous deployment workflows with Netlify's platform.
No reviews yet. Be the first to review!
Sign in to join the conversation
Deploy a site directory to Netlify. Parameters: path (string - Required), prod (boolean - Optional), message (string - Optional)
List all Netlify sites linked to your account. Parameters: None
Trigger a new build/deploy for a site. Parameters: siteId (string - Required), message (string - Optional)
Run a Netlify build locally. Parameters: siteId (string - Optional), context (string - Optional), dry (boolean - Optional)
Link the current project directory to a Netlify site. Parameters: siteId (string - Required)
Unlink the current project directory from the associated Netlify site. Parameters: None
Show the Netlify status for the linked site/directory. Parameters: None
Create a new site on Netlify. Parameters: name (string - Optional), accountSlug (string - Optional)
Delete a site from Netlify. Parameters: siteId (string - Required), force (boolean - Optional)
Initialize a new site in the current directory. Parameters: name (string - Optional), accountSlug (string - Optional), manual (boolean - Optional)
Open site in browser. Parameters: siteId (string - Optional), admin (boolean - Optional)
Watch deployment progress in real-time. Parameters: siteId (string - Required), deployId (string - Optional)
Set one or more environment variables for a site. Parameters: siteId (string - Required), envVars (object - Required)
Get the value of a specific environment variable. Parameters: siteId (string - Optional), key (string - Required), context (string - Optional), scope (string - Optional)
Unset (delete) an environment variable. Parameters: siteId (string - Optional), key (string - Required), context (string - Optional)
Import environment variables from a .env file. Parameters: siteId (string - Required), filePath (string - Required), replace (boolean - Optional)
Clone environment variables from one site to another. Parameters: fromSiteId (string - Required), toSiteId (string - Required)
View function logs. Parameters: siteId (string - Required), function (string - Optional)