Skip to main content
Glama
TencentEdgeOne

EdgeOne Pages MCP

Official
README.md
# 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

TDQS

B3.1/5.0

Scored across 2 tools

Disambiguation5/5

The two tools have clearly distinct purposes: one deploys a folder or zip file for a built frontend, while the other deploys raw HTML content. There is no overlap or ambiguity between them, making it easy for an agent to select the correct tool based on the input type.

Naming Consistency5/5

Both tools follow a consistent verb_noun pattern with 'deploy' as the verb, and the nouns ('folder_or_zip', 'html') clearly indicate the target. The naming is uniform and predictable across the set.

Tool Count2/5

With only 2 tools, the server feels thin for a deployment service. While the tools cover basic deployment scenarios, typical MCP servers for such domains (like GitHub or cloud services) offer more operations (e.g., list deployments, update, delete, monitor status), suggesting this set is under-scoped and may leave gaps in agent workflows.

Completeness2/5

The server lacks essential operations for a deployment domain, such as listing existing deployments, updating or deleting them, checking status, or managing projects. This creates significant gaps that could cause agent failures when trying to perform full lifecycle management, as agents cannot retrieve or modify past deployments.

Maintenance

ActivityStale
ResponsivenessUnresponsive