Home Tutorials Categories Skills About
ZH EN JA KO
🌐

Netlify

Frontend Deployment Cloud & DevOps

Install Command

npx clawhub@latest install netlify

Installation Guide

1
Check Environment

Make sure Node.js 22+ and OpenClaw are installed. Run openclaw --version in your terminal to verify.

2
Run Installation

Run the install command above in your terminal. ClawHub will automatically download and install Netlify to the ~/.openclaw/skills/ directory.

3
Verify Installation

Run openclaw skills list to check your installed skills and confirm Netlify appears in the list.

4
Configure (Optional)

Follow the configuration instructions in the description below to add skill settings to ~/.config/openclaw/openclaw.json5.

Manual Installation: Copy the Skill folder to ~/.openclaw/skills/ or the skills/ directory in your project root. Make sure the folder contains a SKILL.md file.
Site creation and deployment management Build logs and deploy previews Domain configuration and environment variables

Detailed Description

Netlify MCP server provides complete management capabilities for the Netlify platform, from creating sites to configuring domains and deploying, letting AI help you complete the entire frontend application deployment workflow.

Core Features

  • Site Management (list_sites/create_site): Create new sites or manage existing ones, configure build commands and publish directories
  • Deploy Operations (create_deploy): Trigger new site deployments, supporting file uploads or builds from Git repositories
  • Deploy Previews: View deploy preview URLs to verify changes before merging
  • Build Logs (get_deploy_logs): Get build logs from the deployment process to analyze build failure causes
  • Environment Variable Management: Set and manage site environment variables, with support for context-specific differentiation
  • Domain Configuration: Configure custom domains and HTTPS certificates for sites

Configuration

{
  "mcpServers": {
    "netlify": {
      "command": "npx",
      "args": ["-y", "netlify-mcp-server"],
      "env": {
        "NETLIFY_AUTH_TOKEN": "your-personal-access-token"
      }
    }
  }
}

Use Cases

  • Quick deployment: Create and deploy a frontend project with a single command
  • Deploy troubleshooting: View build logs to analyze deployment failure causes
  • Site management: Batch manage configurations across multiple Netlify sites
  • Environment configuration: Uniformly manage environment variables across different environments