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 서버를 사용하세요 (로컬 설치 불필요):

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

소스 코드: https://github.com/TencentEdgeOne/self-hosted-pages-mcp

라이선스

MIT