#!/usr/bin/env python3
"""Simple hello world script created by Kiro."""
def greet(name="World"):
"""Greet someone with a friendly message."""
return f"Hello, {name}! This was created through Kiro's MCP interface."
def main():
"""Main function."""
print(greet())
print(greet("Kiro User"))
# Add more functionality here
print("\nFile operations available:")
print("- Read files")
print("- Write files")
print("- Update files")
print("- List directories")
print("- Get file info")
if __name__ == "__main__":
main()