Launchpad
https://launchpad.xo.builders/
🚀 Quick Start Guide
1. Set Up Your XO Project
Go to XO Launchpad
Login and create a new project:
{ "project_name": "my-awesome-app" }
Save your
DEPLOYMENT_ID
and obtain yourACCESS_TOKEN
2. Prepare Your Container
Note: Sample Docker files available here: Sample Dockerfile
Build and push your Docker image to the XO registry:
# Login to XO registry
docker login registry.xo.builders -u 'your-robot-name' -p 'your-robot-secret'
# Build your image
docker build --platform linux/amd64,linux/arm64 -t registry.xo.builders/your-project/your-app:latest .
# Push to registry
docker push registry.xo.builders/your-project/your-app:latest
3. Configure MCP Client
Add the server configuration to your MCP client (Claude Desktop, Cursor, etc.) with your credentials.
4. Deploy and Manage
Once configured, you can use natural language commands:
"Deploy my application to XO"
"Show me the application logs"
"Expose my app to the internet"
"Update my knowledge base with the latest documentation"
Last updated