For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Logo
Join CommunityStart Trading
HomeOverviewDIME UtilityTradingRisk & LiquidationsParadex ChainEcosystemREST APIWebSocket APIAgentic AI HubRelease Notes
HomeOverviewDIME UtilityTradingRisk & LiquidationsParadex ChainEcosystemREST APIWebSocket APIAgentic AI HubRelease Notes
  • Getting Started
    • Overview
  • Local MCP
    • Quickstart guide
    • Prerequisites
    • ChatGPT Desktop
    • Claude Code CLI
    • Claude Desktop
    • Codex CLI
    • Cursor
    • Gemini CLI
    • VS Code (GitHub Copilot)
    • Windsurf
    • Troubleshooting
  • Remote MCP
    • Quickstart guide
    • Railway
    • Render
    • Fly.io
    • AWS Lambda
    • Docker / VPS
  • Paradex-hosted MCP
    • Quickstart guide
    • Claude.ai (Web)
    • ChatGPT Desktop
    • Smithery
    • Other Clients
    • CLI
    • Agentic Skills
  • MCP Reference
    • Resources
    • Tools
    • Prompts
Join CommunityStart Trading
Remote MCP

Docker / VPS

Run on any machine that can serve HTTPS — a DigitalOcean Droplet, Hetzner VPS, etc.

Was this page helpful?
Edit this page
Previous

Quickstart guide

The simplest way to get started — connect directly to the Paradex-hosted MCP server with no local install or cloud deployment.

Next
Built with
1

Build and run the container

$# Build
$docker build . -t mcp-paradex-http
$
$# Run
$docker run -d \
> --name mcp-paradex \
> --restart unless-stopped \
> -p 8080:8080 \
> -e MCP_TRANSPORT=streamable-http \
> -e MCP_PORT=8080 \
> -e PARADEX_ENVIRONMENT=prod \
> mcp-paradex-http
2

Add HTTPS with a reverse proxy

AI clients require https://. Use a reverse proxy like Caddy to add HTTPS (it handles certificates automatically):

your-domain.com {
reverse_proxy localhost:8080
}
$caddy run --config /etc/caddy/Caddyfile
3

Connect your AI client

Paste your URL (e.g. https://your-domain.com/mcp) into your AI client’s MCP settings. See the Remote MCP quickstart for client-specific instructions.