EdgeOne Pages MCP

oficial

Un servicio MCP para implementar contenido HTML en EdgeOne Pages y obtener una URL accesible públicamente.

¿Qué puedes hacer con Edge One Pages MCP?

  • Implementar proyectos full-stack — pídele al asistente que despliegue tu proyecto local en EdgeOne Pages y devuelva una URL pública usando deploy_folder_or_zip.
  • Desplegar una vista previa de un solo HTML — previsualiza rápidamente una página HTML independiente a través del endpoint streaming HTTP MCP sin instalación local.
  • Apuntar a la región de Tencent Cloud China — configura el servidor con la bandera --region china para desplegar proyectos en la región de China.
  • Omitir la autenticación del navegador — proporciona una variable de entorno EDGEONE_PAGES_API_TOKEN para omitir el flujo de inicio de sesión interactivo.
  • Preseleccionar un proyecto — establece EDGEONE_PAGES_PROJECT_NAME para omitir el paso de selección de proyecto en el navegador durante el despliegue.

Documentación

EdgeOne Makers MCP

Un servicio MCP para desplegar proyectos full-stack en EdgeOne Makers y obtener URLs de acceso público.

Requisitos

  • Node.js 18 o superior

Configuración MCP

// Tencent Cloud International (Default)
{
  "mcpServers": {
    "edgeone-makers-mcp-server": {
      "timeout": 600,
      "command": "npx",
      "args": ["@edgeone/makers-mcp@latest"],
      "env": {
        // Optional. 
        // If provided, skips the browser login flow.
        // How to obtain your API token: 
        // https://pages.edgeone.ai/document/api-token
        "EDGEONE_PAGES_API_TOKEN": "",
        // Optional. 
        // If provided, skips the browser project selection flow.
        "EDGEONE_PAGES_PROJECT_NAME": ""
      }
    }
  }
}

// Tencent Cloud China
{
  "mcpServers": {
    "edgeone-makers-mcp-server": {
      "timeout": 600,
      "command": "npx",
      "args": ["@edgeone/makers-mcp@latest", "--region", "china"],
      "env": {
        // Optional. 
        // If provided, skips the browser login flow.
        // How to obtain your API token: 
        // https://pages.edgeone.ai/document/api-token
        "EDGEONE_PAGES_API_TOKEN": "",
        // Optional. 
        // If provided, skips the browser project selection flow.
        "EDGEONE_PAGES_PROJECT_NAME": ""
      }
    }
  }
}

Vista previa rápida de HTML

Para desplegar rápidamente una sola página HTML para previsualización, usa el Servidor MCP HTTP de Streaming (no requiere instalación local):

{
  "mcpServers": {
    "edgeone-makers-mcp-server": {
      "url": "https://mcp-on-edge.edgeone.site/mcp-server"
    }
  }
}

Código fuente: https://github.com/TencentEdgeOne/self-hosted-pages-mcp

Licencia

MIT