Netlify MCP Server
Сервер Netlify MCP
Сервер Model Context Protocol (MCP) для управления сайтами Netlify. Этот сервер обеспечивает бесшовную интеграцию с API Netlify через MCP, позволяя вам создавать, управлять и развертывать сайты непосредственно из вашей среды с поддержкой MCP.
Функции
Создавайте новые сайты из репозиториев GitHub
Список существующих сайтов Netlify
Получить подробную информацию о сайте
Удалить сайты
Related MCP server: Express MCP Server
Установка
Клонируйте этот репозиторий:
git clone https://github.com/MCERQUA/netlify-mcp.git
cd netlify-mcpУстановить зависимости:
npm installСоздайте проект:
npm run buildКонфигурация
Получение токена доступа Netlify
Создайте учетную запись Netlify по адресу https://app.netlify.com/signup
Перейдите в Настройки пользователя > Приложения > Персональные токены доступа.
Нажмите «Новый токен доступа».
Дайте ему имя (например, «Интеграция MCP»).
Скопируйте сгенерированный токен
Настройка МКП
Создайте файл
.envв корне проекта:
NETLIFY_ACCESS_TOKEN=your_token_hereДобавьте сервер в конфигурацию настроек MCP:
{
"mcpServers": {
"netlify": {
"command": "node",
"args": ["path/to/netlify-mcp/build/index.js"],
"env": {
"NETLIFY_ACCESS_TOKEN": "your_token_here"
},
"disabled": false,
"autoApprove": []
}
}
}Доступные инструменты
создатьСайтИзGitHub
Создайте новый сайт Netlify из репозитория 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
}списокСайты
Перечислите все сайты Netlify, к которым у вас есть доступ.
interface ListSitesArgs {
filter?: 'all' | 'owner' | 'guest'; // Optional filter for sites
}получитьСайт
Получите подробную информацию о конкретном сайте.
interface GetSiteArgs {
siteId: string; // ID of the site to retrieve
}удалитьСайт
Удалить сайт Netlify.
interface DeleteSiteArgs {
siteId: string; // ID of the site to delete
}Документация
Более подробную информацию см. здесь:
Внося вклад
Вклады приветствуются! Пожалуйста, не стесняйтесь отправлять запрос на включение.
Лицензия
Данный проект лицензирован по лицензии MIT — подробности см. в файле LICENSE .
Maintenance
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
- FlicenseNot gradedqualityDmaintenanceA serverless implementation of the Model Context Protocol (MCP) that runs on Netlify Functions, allowing developers to build and deploy MCP-compatible services with minimal configuration.
- FlicenseNot gradedqualityDmaintenanceA basic example of a serverless Model Context Protocol (MCP) implementation using Netlify Functions, allowing developers to run MCP services without managing traditional server infrastructure.
- -licenseNot gradedqualityNot gradedmaintenanceA 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.
- FlicenseNot gradedqualityDmaintenanceDemonstrates how to deploy and run Model Context Protocol (MCP) servers using Netlify's serverless functions. Provides a basic example of serverless MCP implementation with customizable URLs and automated deployment pipeline.
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.
Appeared in Searches
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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