Add your description here
Project description
Time MCP Server
A Model Context Protocol server that provides time and timezone conversion capabilities. This server enables LLMs to get current time information and perform timezone conversions using IANA timezone names, with automatic system timezone detection.
Available Tools
-
get_current_time- Get current time in a specific timezone or system timezone.- Required arguments:
timezone(string): IANA timezone name (e.g., 'America/New_York', 'Europe/London')
- Required arguments:
-
convert_time- Convert time between timezones.- Required arguments:
source_timezone(string): Source IANA timezone nametime(string): Time in 24-hour format (HH:MM)target_timezone(string): Target IANA timezone name
- Required arguments:
Installation
Using uv (recommended)
When using uv no specific installation is needed. We will
use uvx to directly run mcp-server-time.
Using PIP
Alternatively you can install time-mcp-local via pip:
pip install time-mcp-local
After installation, you can run it as a script using:
python -m time-mcp-local
Configuration
Configure for Claude.app
Add to your Claude settings:
Using uvx
"mcpServers": {
"time": {
"command": "uvx",
"args": ["time-mcp-local"]
}
}
Using pip installation
"mcpServers": {
"time": {
"command": "python",
"args": ["-m", "time_mcp_local"]
}
}
Configure for Zed
Add to your Zed settings.json:
Using uvx
"context_servers": [
"mcp-server-time": {
"command": "uvx",
"args": ["time-mcp-local"]
}
],
Using pip installation
"context_servers": {
"mcp-server-time": {
"command": "python",
"args": ["-m", "time_mcp_local"]
}
},
Customization - System Timezone
By default, the server automatically detects your system's timezone. You can override this by adding the argument --local-timezone to the args list in the configuration.
Example:
{
"command": "python",
"args": ["-m", "time_mcp_local", "--local-timezone=America/New_York"]
}
Example Interactions
- Get current time:
{
"name": "get_current_time",
"arguments": {
"timezone": "Europe/Warsaw"
}
}
Response:
{
"timezone": "Europe/Warsaw",
"datetime": "2024-01-01T13:00:00+01:00",
"is_dst": false
}
- Convert time between timezones:
{
"name": "convert_time",
"arguments": {
"source_timezone": "America/New_York",
"time": "16:30",
"target_timezone": "Asia/Tokyo"
}
}
Response:
{
"source": {
"timezone": "America/New_York",
"datetime": "2024-01-01T12:30:00-05:00",
"is_dst": false
},
"target": {
"timezone": "Asia/Tokyo",
"datetime": "2024-01-01T12:30:00+09:00",
"is_dst": false
},
"time_difference": "+13.0h",
}
Debugging
You can use the MCP inspector to debug the server. For uvx installations:
npx @modelcontextprotocol/inspector uvx time-mcp-local
Or if you've installed the package in a specific directory or are developing on it:
cd path/to/servers/src/time
npx @modelcontextprotocol/inspector uv run time-mcp-local
Examples of Questions for Claude
- "What time is it now?" (will use system timezone)
- "What time is it in Tokyo?"
- "When it's 4 PM in New York, what time is it in London?"
- "Convert 9:30 AM Tokyo time to New York time"
build
uv build --wheel
uv publish --token xxx
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mseep_time_mcp_local-0.1.4.tar.gz.
File metadata
- Download URL: mseep_time_mcp_local-0.1.4.tar.gz
- Upload date:
- Size: 2.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92c0b709e781c829cf6947cc4c729a16b3e28a2027eb21cf51a11172c1df3219
|
|
| MD5 |
e463ffa2d8b98095becdef8f803fc6e6
|
|
| BLAKE2b-256 |
85ed5755b381f43e1271c166cdf50e54ee40325fb7a4f45abf0679664dfdde62
|
File details
Details for the file mseep_time_mcp_local-0.1.4-py3-none-any.whl.
File metadata
- Download URL: mseep_time_mcp_local-0.1.4-py3-none-any.whl
- Upload date:
- Size: 2.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0d071d3c8d78968bf2136d305f71b6d60bfc9d37f52a43ef3aeafb043ad09722
|
|
| MD5 |
7a307d22cb515d8a5505dd0557694477
|
|
| BLAKE2b-256 |
88a80fa52e5334e68c59e70a86b2ac6f7595cfee27b159f4b258a82cfa6130ef
|