We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tron-infinex/openclaw-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
tron-spawn•773 B
#!/bin/bash
# tron-spawn - Spawn an isolated background task for Tron
# Usage: tron-spawn "long-running task"
set -euo pipefail
TASK="${1:-}"
if [[ -z "$TASK" ]]; then
echo "Usage: tron-spawn \"long-running task description\"" >&2
echo "" >&2
echo "Examples:" >&2
echo " tron-spawn \"Monitor Datadog for 2 hours, alert if issues\"" >&2
echo " tron-spawn \"Research best practices for K8s security\"" >&2
echo " tron-spawn \"Analyze last week's infrastructure issues\"" >&2
exit 1
fi
# Use openclaw CLI to spawn isolated session
openclaw sessions spawn \
--agent phoenix \
--task "$TASK" \
--timeout 300 \
--cleanup keep
echo "🚀 Background task spawned for Tron"
echo " Tron will work on this and ping you when done"