MCP Time Server

Model Context Protocol for Time Management

Hosted & Ready-to-Use

Time Management for LLMs

A comprehensive MCP server that provides Large Language Models with powerful time calculation, date manipulation, and temporal reasoning capabilities through a standardized protocol.

Connect Instantly!

No downloads, no setup - just connect and use!

Server Configuration
Choose the right format for your MCP client
Windsurf-Specific Format

Windsurf requires explicit transport type specification

{
"mcpServers": {
"mcp-time-server": {
"serverUrl": "https://www.mcptime.xyz/api/mcp/sse",
"transport": {
"type": "sse"
}
}
}
}

📁 Config file: ~/.codeium/windsurf/mcp_config.json

Globally hosted on Vercel with 99.9% uptime

Comprehensive Time Management

Empower your LLM with advanced temporal reasoning capabilities through our hosted MCP server

Zero Installation
Instant Connection
Always Available
Date Operations
Calculate weekdays, find dates relative to others, and handle complex date arithmetic
  • Find weekday for any date
  • Add/subtract days, months, years
  • Date range calculations
Duration Calculations
Precise time duration calculations between any two points in time
  • Time between dates
  • Business day calculations
  • Age calculations
Time Zone Handling
Convert between time zones and handle daylight saving time automatically
  • Global timezone support
  • DST awareness
  • UTC conversions

Available Functions

Explore the comprehensive API that your LLM can use through the MCP protocol

get_weekday
Determine what day of the week a specific date falls on
// Function call
get_weekday("2024-12-25")
// Response
"Wednesday"
Parameters: date (string in YYYY-MM-DD format)
Returns: Day name (Monday, Tuesday, etc.)