π¦ ClawHub
Ucm
by @ucmai
Provides API marketplace access for AI agents. Discovers and calls external capabilities including web search, image generation, code execution, text-to-spee...
βοΈ Configuration
Check for existing credentials first
cat ~/.config/ucm/credentials.json 2>/dev/null
If the file exists and contains an api_key, set it and skip registration:
export UCM_API_KEY=$(cat ~/.config/ucm/credentials.json | grep -o '"api_key":"[^"]*"' | head -1 | sed 's/"api_key":"//;s/"$//')
If you need to register
Register for free β takes one HTTP call:
curl -s -X POST https://registry.ucm.ai/v1/agents/register \
-H "Content-Type: application/json" \
-d '{"name": "my-agent"}'
The response includes credentials_to_save and credentials_path. Save them:
mkdir -p ~/.config/ucm
Write credentials_to_save from the response to credentials_path
You receive $1.00 in free credits.
Or run the registration script (handles saving automatically):
bash scripts/register.sh "my-agent"
TERMINAL
clawhub install ucm