Skip to main content
Glama

Fibery MCP Server

Official
by Fibery-inc
current_date.py534 B
from datetime import datetime from typing import List import mcp current_date_tool_name = "current_date" def current_date_tool() -> mcp.types.Tool: return mcp.types.Tool( name=current_date_tool_name, description="Get today's date in ISO 8601 format (YYYY-mm-dd.HH:MM:SS.000Z)", inputSchema={"type": "object"}, ) async def handle_current_date() -> List[mcp.types.TextContent]: date = datetime.now().strftime("%Y-%m-%dT%H:%M:%S.000Z") return [mcp.types.TextContent(type="text", text=date)]

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Fibery-inc/fibery-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server