Sample hello world tool via uloop CLI. Use when you need to test the MCP tool system or see an example of custom tool implementation.
Personalized hello world tool with multi-language support.
uloop hello-world [options]
| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| --name | string | World | Name to greet |
| --language | string | english | Language for greeting: english, japanese, spanish, french |
| --no-include-timestamp | flag | - | Exclude timestamp from response |
# Default greeting
uloop hello-world
# Greet with custom name
uloop hello-world --name "Alice"
# Japanese greeting
uloop hello-world --name "太郎" --language japanese
# Spanish greeting without timestamp
uloop hello-world --name "Carlos" --language spanish --no-include-timestamp
Returns JSON with:
Message: The greeting messageLanguage: Language used for greetingTimestamp: Current timestamp (if enabled)This is a sample custom tool demonstrating:
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer