edgeone-pages-mcp

MCP.Pizza Chef: TencentEdgeOne

EdgeOne Makers MCP takes the HTML your assistant just produced and publishes it to Tencent's EdgeOne Makers hosting, handing back a link you can share right away. It runs through Node.js 18 or newer, or you can point your app at the hosted address and install nothing at all. Signing in happens in your browser the first time, and you can store a personal access key to skip that step later. The project was still receiving code updates as of July 2026.

Coding
Web/Research

Use This MCP server To

Publish a landing page my assistant just wrote and get a link Share a quick prototype with a coworker without setting up hosting Put a one-page site online in the middle of a chat Preview a design idea at a real web address before committing Send a client a live link instead of an attachment

README

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

edgeone-pages-mcp FAQ

Is this project still maintained?
Yes — the code was updated as of July 2026 and it is run by the Tencent EdgeOne team.
Which apps does it work in?
Any assistant app that supports MCP servers, including Claude Desktop and Cursor, once you paste in a short config snippet.
Do I need an account?
Yes, a free EdgeOne Makers account. The first run opens a browser window to sign in, or you can save a personal access key to skip that.
Can I use this to put a page my assistant wrote online?
Yes — that is exactly what it does, and it hands back a public link you can share.
How hard is setup?
Easy. Paste a short config block into your app. For a quick single-page preview there is a hosted address that needs no install at all.
Does it publish a whole site or just one page?
It can publish a full project, and there is a lighter mode for previewing a single page fast.
Is there a version for mainland China?
Yes — the same setup accepts a region setting that points at the Tencent Cloud China service.