EdgeOne Pages MCP enables deployment of HTML content, folders, and full-stack projects to Tencent EdgeOne Pages infrastructure, returning publicly accessible URLs for deployed content. The server provides tools including `deploy_html` for static HTML, `deploy_folder` for full-stack projects, and `deploy_folder_or_zip` for packaged content, leveraging EdgeOne's edge functions and KV storage for fast content delivery. This solves the problem of quickly sharing AI-generated or user-created web content with public URLs without manual infrastructure setup.
An MCP service for deploying full-stack projects to EdgeOne Makers and obtaining publicly accessible URLs.
// 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": ""
}
}
}
}
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
MIT