edgeone-pages-deploy

Deploys static HTML to a public URL instantly with no authentication required. Use when asked to "host this", "deploy this site", "get a public link", "share this HTML", "quick deploy", "publish this page", or any request to make an HTML file publicly accessible via URL. Supports self-contained HTML files with inline CSS/JS.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "edgeone-pages-deploy" with this command: npx skills add 0juano/agent-skills/0juano-agent-skills-edgeone-pages-deploy

EdgeOne Pages Deploy

Deploy any HTML file or directory to a public URL in seconds. No authentication, no accounts, no configuration.

Quick Deploy

# Single HTML file
scripts/deploy.sh path/to/index.html

# Directory containing index.html
scripts/deploy.sh path/to/site/

Returns a public URL like https://mcp.edgeone.site/share/abc123.

How It Works

Uses EdgeOne Pages' public MCP endpoint to deploy HTML content via JSON-RPC.

  • Endpoint: https://mcp-on-edge.edgeone.app/mcp-server
  • Method: tools/calldeploy-html
  • Auth: None required

Manual Deploy (curl)

HTML=$(python3 -c 'import sys,json; print(json.dumps(sys.stdin.read()))' < index.html)

curl -s -X POST https://mcp-on-edge.edgeone.app/mcp-server \
  -H "Content-Type: application/json" \
  -d "{\"jsonrpc\":\"2.0\",\"id\":1,\"method\":\"tools/call\",\"params\":{\"name\":\"deploy-html\",\"arguments\":{\"value\":$HTML}}}"

Validation

After deploying, SHOULD verify the URL returns HTTP 200:

curl -s -o /dev/null -w "%{http_code}" <returned-url>

Constraints

  • Single HTML file only — multi-file sites with separate CSS/JS/images are NOT supported
  • Self-contained HTML works best (inline styles, inline scripts, base64 images)
  • No custom domains
  • No delete/update — each deploy creates a new URL
  • Link persistence depends on EdgeOne's retention policy

Requirements

  • curl
  • python3 (for JSON encoding)

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

yahoo-finance

No summary provided by upstream source.

Repository SourceNeeds Review
246-0juano
Automation

bondterminal-x402

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

ticktick

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

weekly-analytics

No summary provided by upstream source.

Repository SourceNeeds Review