Uloop Hello World

Sample uloop hello-world tool. Use to verify custom tool wiring or inspect a minimal tool implementation example.

hatayama 2c0153f 1.3 KB Updated

File contents

uloop hello-world

Personalized hello world tool with multi-language support.

Usage

uloop hello-world [options]

Parameters

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

Examples

# 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

Output

Returns JSON with:

  • Message: The greeting message
  • Language: Language used for greeting
  • Timestamp: Current timestamp (if enabled)

Notes

This is a sample custom tool demonstrating:

  • Type-safe parameter handling with Schema
  • Enum parameters for language selection
  • Value-less flag parameters
  • Multi-language support

hatayama/uLoopMCP/tree/main/.agents/skills/uloop-hello-world commit 2c0153fb28

Frequently asked questions

npx skillmds@latest add hatayama/uloop-hello-world