Skip to content

Time MCP Server

The Time MCP Server provides date and time operations for AI agents, enabling them to work with temporal data, scheduling, and time-based calculations. It's perfect for any workflow that needs to handle dates, times, timezones, or scheduling.

Installation

  1. Open Griptape Nodes and go to SettingsMCP Servers

  2. Click + New MCP Server

  3. Configure the server:

    • Server Name/ID: time
    • Connection Type: Local Process (stdio)
    • Configuration JSON:
    {
        "transport": "stdio",
        "command": "uvx",
        "args": ["mcp-server-time"],
        "env": {},
        "cwd": null,
        "encoding": "utf-8",
        "encoding_error_handler": "strict"
    }
    
  4. Click Create Server

Available Tools

  • get_current_time - Get the current date and time
  • parse_date - Parse date strings into structured format
  • format_date - Format dates into different string formats
  • add_time - Add time periods to dates
  • subtract_time - Subtract time periods from dates
  • compare_dates - Compare two dates
  • get_timezone_info - Get information about timezones
  • convert_timezone - Convert times between timezones

Resources