EdgeOne Pages MCP
공식HTML 콘텐츠를 EdgeOne Pages에 배포하고 공개적으로 접근 가능한 URL을 얻기 위한 MCP 서비스입니다.
Edge One Pages MCP(으)로 무엇을 할 수 있나요?
- 전체 스택 프로젝트 배포 — 어시스턴트에게
deploy_folder_or_zip을 사용하여 로컬 프로젝트를 EdgeOne Pages에 배포하고 공개 URL을 반환하도록 요청합니다. - 단일 HTML 미리보기 배포 — 로컬 설치 없이 스트리밍 HTTP MCP 엔드포인트를 통해 독립형 HTML 페이지를 빠르게 미리봅니다.
- Tencent Cloud 중국 리전 대상 —
--region china플래그로 서버를 구성하여 프로젝트를 중국 리전에 배포합니다. - 브라우저 인증 건너뛰기 —
EDGEONE_PAGES_API_TOKEN환경 변수를 제공하여 대화형 로그인 흐름을 우회합니다. - 프로젝트 사전 선택 —
EDGEONE_PAGES_PROJECT_NAME을 설정하여 배포 중 브라우저 프로젝트 선택 단계를 건너뜁니다.
문서
EdgeOne Makers MCP
풀스택 프로젝트를 EdgeOne Makers에 배포하고 공개적으로 접근 가능한 URL을 얻기 위한 MCP 서비스입니다.
요구 사항
- 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