EdgeOne Pages MCP Server

官方

一个用于将HTML内容部署到EdgeOne Pages并获取可公开访问URL的MCP服务。

文档

EdgeOne Makers MCP

一个用于将全栈项目部署到 EdgeOne Makers 并获取可公开访问 URL 的 MCP 服务。

EdgeOne Makers MCP server

环境要求

  • Node.js 18 或更高版本

MCP 配置

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

快速 HTML 预览

如需快速部署单个 HTML 页面进行预览,可使用 Streaming HTTP MCP Server(无需本地安装):

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

源代码:https://github.com/TencentEdgeOne/self-hosted-pages-mcp

许可证

MIT