Time MCP Server
by Anthropic ยท โญ 782 stars ยท updated 3 months ago
Time and timezone conversion capabilities. Get current time, convert between timezones, format dates, and calculate time differences across any timezone worldwide.
78
Good
Quality Score Breakdown
maintenance80/100
community75/100
documentation78/100
compatibility79/100
Use Cases
- โget current time
- โconvert timezones
- โformat dates
- โtime calculations
โก One-Click Install Configs
Copy the config below and paste it into your AI client's config file.
๐ค Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"time": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-time"
]
}
}
}โก Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"time": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-time"
]
}
}
}๐ VS Code
.vscode/mcp.json
{
"mcp": {
"servers": {
"time": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-time"
]
}
}
}
}