from server import mcp_server_time as get_current_time
import json
print("Testing get_current_time with default timezone (Asia/Shanghai):")
result = get_current_time()
print(result)
print("\nTesting get_current_time with UTC:")
result_utc = get_current_time("UTC")
print(result_utc)
print("\nTesting get_current_time with America/New_York:")
result_ny = get_current_time("America/New_York")
print(result_ny)