TE

tencentedgeone/edgeone-makers-mcp

API 开发
426 stars 0 forks 质量 47 趋势 47

An MCP service for deploying full-stack projects to EdgeOne Makers and obtaining publicly accessible URLs.

概览

An MCP service for deploying full-stack projects to EdgeOne Makers and obtaining publicly accessible URLs.

README

EdgeOne Makers MCP

An MCP service for deploying full-stack projects to EdgeOne Makers and obtaining publicly accessible URLs.

Requirements

  • Node.js 18 or higher

MCP Configuration

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

Quick HTML Preview

For quickly deploying a single HTML page for preview, use the Streaming HTTP MCP Server (no local installation required):

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

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

License

MIT

View this README on GitHub

安装

npx @edgeone/makers-mcp@latest

配置

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