Integrations
Manus
Connect XO Launchpad to Manus via the Custom MCP integration.
Connect XO Launchpad to Manus using the Custom MCP integration. This lets Manus communicate with your deployments, trigger deploys, fetch logs, and more.
Open Connectors in Manus
Log into your Manus workspace. Go to Settings (bottom-left corner) and navigate to Connectors.
Add Custom MCP
Click Add Connectors → Custom MCP → Add Custom MCP Server. In the pop-up, select Import by JSON.
Paste the XO MCP Server JSON
{
"mcpServers": {
"xo-mcp-server": {
"command": "uvx",
"args": [
"git+https://github.com/sharmasuraj0123/xo-mcp-server.git"
],
"env": {
"ACCESS_TOKEN": "access_token",
"DEPLOYMENT_ID": "deployment_id"
}
}
}
}Replace Placeholders
ACCESS_TOKEN→ Your XO personal access tokenDEPLOYMENT_ID→ The deployment ID from XO Launchpad
Make sure values are strings — wrap them in quotes as shown above.
Import and Save
Click Import. Manus will list xo-mcp-server as an active connector.
Troubleshooting
- Invalid configuration — Ensure your JSON is valid (no missing commas or braces). Double-check that credentials are inside quotes.
- Connector not showing — Restart Manus after importing. Verify
uvxis available on your system. - Deployment not responding — Ensure the
DEPLOYMENT_IDmatches an active deployment. Check that your access token has the correct permissions.