EdgeOne Pages MCP

official

An MCP service for deploying HTML content to EdgeOne Pages and obtaining a publicly accessible URL.

What can you do with Edge One Pages MCP?

  • Deploy full-stack projects — ask the assistant to deploy your local project to EdgeOne Pages and return a public URL using deploy_folder_or_zip.
  • Deploy a single HTML preview — quickly preview a standalone HTML page via the streaming HTTP MCP endpoint without local installation.
  • Target Tencent Cloud China region — configure the server with the --region china flag to deploy projects to the China region.
  • Skip browser authentication — provide an EDGEONE_PAGES_API_TOKEN environment variable to bypass the interactive login flow.
  • Pre-select a project — set EDGEONE_PAGES_PROJECT_NAME to skip the browser project selection step during deployment.

Documentation

EdgeOne Makers MCP

An MCP service for deploying full-stack projects to EdgeOne Makers and obtaining publicly accessible URLs.

Requirements

  • Node.js 18 or higher

MCP Configuration

// 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": ""
      }
    }
  }
}

Quick HTML Preview

For quickly deploying a single HTML page for preview, use the Streaming HTTP MCP Server (no local installation required):

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

Source code: https://github.com/TencentEdgeOne/self-hosted-pages-mcp

License

MIT