We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/fusedio/fused-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
current_utc_time.py•361 B
import fused
@fused.udf(cache_max_age="0s")
def udf():
"""Simply return the current time in UTC"""
import time
import pandas as pd
from datetime import datetime
return pd.DataFrame(
{
"current_utc_time": [
datetime.fromtimestamp(time.time()).strftime("%Y-%m-%d %H:%M:%S")
]
}
)