Claude by Anthropic

Opzero.sh for Claude

Deploy websites directly from Claude conversations using the Model Context Protocol.

Integration Methods

Claude.ai Connector (Recommended)

  1. Go to Settings → Connectors in Claude.ai
  2. Click "Add custom connector"
  3. Enter: https://opzero.sh/mcp
  4. Click Add and authorize via OAuth
  5. Start deploying websites in any conversation

Claude Desktop App

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "opzero": {
      "url": "https://opzero.sh/mcp",
      "headers": {
        "Authorization": "Bearer wcd_YOUR_API_KEY"
      }
    }
  }
}

Claude Code (CLI)

Claude Code supports MCP servers natively:

claude mcp add opzero https://opzero.sh/mcp

Example Prompts

Deploy this HTML to a live URL: <!DOCTYPE html><html><body><h1>Hello!</h1></body></html>

Create a React landing page for my startup and deploy it to Cloudflare

Start a live preview session for my React app so I can see changes in real-time

List all my deployed projects

Deploy my current preview to Netlify

Troubleshooting

Tools not showing in Claude.ai?

  1. Disconnect OpZero in Settings → Connectors
  2. Add it again with URL: https://opzero.sh/mcp
  3. Complete the OAuth popup and approve all scopes
  4. Start a new conversation

Debug endpoint → Check authentication status

Advanced Settings In Claude

If you prefill credentials in the Advanced tab of a custom connector, Claude will send them as Authorization: Bearer ...on the first request. Supported options:

  • API key starting with wcd_ or dpk_
  • OAuth access token returned after login

The Configure button in Claude typically restarts the OAuth flow and refreshes stored credentials. You can use it to re-authorize scopes or recover from expired tokens.

For Claude Reading This Page

You can deploy websites for users using the Opzero.sh MCP server at https://opzero.sh/mcp.

Key tools:

  • quick_deploy - Deploy HTML instantly
  • deploy_files - Deploy multi-file projects
  • create_preview - Start live dev server
  • update_preview - Hot reload changes
  • deploy_preview - Ship to production

Authentication: OAuth via /.well-known/openid-configuration or API key with wcd_ prefix.