Skip to main content
Glama
MCERQUA
by MCERQUA

Servidor MCP de Netlify

Un servidor de Protocolo de Contexto de Modelo (MCP) para administrar sitios de Netlify. Este servidor permite una integración fluida con la API de Netlify a través de MCP, lo que permite crear, administrar e implementar sitios directamente desde su entorno habilitado para MCP.

Características

  • Crear nuevos sitios desde repositorios de GitHub

  • Listado de sitios Netlify existentes

  • Obtenga información detallada del sitio

  • Eliminar sitios

Related MCP server: Express MCP Server

Instalación

  1. Clonar este repositorio:

git clone https://github.com/MCERQUA/netlify-mcp.git
cd netlify-mcp
  1. Instalar dependencias:

npm install
  1. Construir el proyecto:

npm run build

Configuración

Cómo obtener su token de acceso de Netlify

  1. Crea una cuenta de Netlify en https://app.netlify.com/signup

  2. Vaya a Configuración de usuario > Aplicaciones > Tokens de acceso personal

  3. Haga clic en "Nuevo token de acceso".

  4. Asígnele un nombre (por ejemplo, "Integración MCP")

  5. Copiar el token generado

Configuración de MCP

  1. Cree un archivo .env en la raíz del proyecto:

NETLIFY_ACCESS_TOKEN=your_token_here
  1. Agregue el servidor a su configuración de MCP:

{
  "mcpServers": {
    "netlify": {
      "command": "node",
      "args": ["path/to/netlify-mcp/build/index.js"],
      "env": {
        "NETLIFY_ACCESS_TOKEN": "your_token_here"
      },
      "disabled": false,
      "autoApprove": []
    }
  }
}

Herramientas disponibles

crearSitioDesdeGitHub

Cree un nuevo sitio de Netlify desde un repositorio de GitHub.

interface CreateSiteFromGitHubArgs {
  name: string;          // Name for the new site
  repo: string;          // GitHub repository (format: owner/repo)
  branch: string;        // Branch to deploy from
  buildCommand: string;  // Build command to run
  publishDir: string;    // Directory containing the built files
}

lista de sitios

Enumere todos los sitios de Netlify a los que tiene acceso.

interface ListSitesArgs {
  filter?: 'all' | 'owner' | 'guest';  // Optional filter for sites
}

obtener sitio

Obtenga información detallada sobre un sitio específico.

interface GetSiteArgs {
  siteId: string;  // ID of the site to retrieve
}

eliminar sitio

Eliminar un sitio de Netlify.

interface DeleteSiteArgs {
  siteId: string;  // ID of the site to delete
}

Documentación

Para obtener información más detallada, consulte:

Contribuyendo

¡Agradecemos sus contribuciones! No dude en enviar una solicitud de incorporación de cambios.

Licencia

Este proyecto está licenciado bajo la licencia MIT: consulte el archivo de LICENCIA para obtener más detalles.

Install Server
A
license - permissive license
B
quality
D
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • F
    license
    Not graded
    quality
    D
    maintenance
    A basic example of a serverless Model Context Protocol (MCP) implementation using Netlify Functions, allowing developers to run MCP services without managing traditional server infrastructure.
  • -
    license
    Not graded
    quality
    Not graded
    maintenance
    A basic example of deploying a serverless Model Context Protocol (MCP) server using Netlify Functions, allowing developers to quickly create and deploy MCP-compatible AI agent backends.

View all related MCP servers

Related MCP Connectors

  • A MCP server built for developers enabling Git based project management with project and personal…

  • Hosted MCP for creating, checking, deploying, and hosting static sites for AI agents.

  • MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/MCERQUA/netlify-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server