# TencentEdgeOne/edgeone-pages-mcp [Health: Active]

**Category:** ☁️ Cloud Platforms  
**Repository:** https://github.com/TencentEdgeOne/edgeone-pages-mcp  
**GitHub Stars:** 434  
**Views:** 1  
**Installs:** 0  
**Upvotes:** 0  
**Directory Page:** https://allmcps.com/mcp/tencentedgeone-edgeone-pages-mcp

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

## Claude Desktop Quick Installation
Install path detected from listing signals. Uses `npx` (confidence: high):

```json
"mcpServers": {
  "edgeone-pages-mcp": {
    "command": "npx",
    "args": ["@edgeone/makers-mcp@latest"],
    "env": {
      "EDGEONE_PAGES_API_TOKEN": "",
      "EDGEONE_PAGES_PROJECT_NAME": ""
    }
  }
}
```

**Requires environment variables:** `EDGEONE_PAGES_API_TOKEN`, `EDGEONE_PAGES_PROJECT_NAME` — the values above are empty placeholders; fill in real credentials before running (see the repository for what each one is for).

## Documentation & 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

```jsonc
// 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):

```json
{
  "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

