EdgeOne Pages MCP Server

公式

EdgeOne PagesにHTMLコンテンツをデプロイし、公開アクセス可能な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