EdgeOne Pages MCP Server

offiziell

Ein MCP-Dienst zum Bereitstellen von HTML-Inhalten auf EdgeOne Pages und zum Erhalten einer öffentlich zugänglichen URL.

Dokumentation

EdgeOne Makers MCP

Ein MCP-Dienst zum Bereitstellen von Full-Stack-Projekten auf EdgeOne Makers und zum Erhalten öffentlich zugänglicher URLs.

EdgeOne Makers MCP server

Voraussetzungen

  • Node.js 18 oder höher

MCP-Konfiguration

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

Schnelle HTML-Vorschau

Zum schnellen Bereitstellen einer einzelnen HTML-Seite zur Vorschau verwenden Sie den Streaming HTTP MCP Server (keine lokale Installation erforderlich):

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

Quellcode: https://github.com/TencentEdgeOne/self-hosted-pages-mcp

Lizenz

MIT