pypi time-mcp-pypistdioMITupdated 1mo ago
A minimal Model Context Protocol (MCP) server built with Python.
What can you do with Time MCP Server?
Time MCP Server
A minimal Model Context Protocol (MCP) server built with Python.
The server provides one simple tool:
get_current_utc_time- Gets the current UTC date and time in RFC 3339 format
Quick start
Prerequisites:
- Python 3.8 or later
- Claude Desktop or another MCP-compatible client
Install and run with:
pip install time-mcp-pypi # or from a local clone: pip install -e .
time-mcp-pypi
Configuration
To use this server with Claude Desktop, add the following to your MCP configuration file:
Windows
Add to %APPDATA%\Claude\claude_desktop_config.json:
{
"mcpServers": {
"time-server": {
"command": "time-mcp-pypi"
}
}
}
macOS
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"time-server": {
"command": "time-mcp-pypi"
}
}
}
Usage
Once configured, you can use the time tool in Claude Desktop:
- "What's the current UTC time?"
- "Give me an RFC 3339 timestamp"
Publishing New Versions
To publish a new version of the package:
-
Update the version in
pyproject.toml, and commit asRelease x.y.z -
Tag the release with a version number prefixed with 'v':
git tag v1.0.1 -
Push the tag to trigger the publishing pipeline:
git push --tags
Then the CI/CD pipeline will automatically publish the package.
CI/CD
The project includes GitHub Actions workflows for:
- Build & Test - Builds and tests the Python package
- Publish - Automatically publishes to PyPI and creates GitHub releases on version tags
Install
Add Time MCP Server to your client. Pick the one you use.
claude mcp add time-mcp-pypi -- uvx time-mcp-pypicodex mcp add time-mcp-pypi -- uvx time-mcp-pypiamp mcp add time-mcp-pypi -- uvx time-mcp-pypi{
"mcpServers": {
"time-mcp-pypi": {
"command": "uvx",
"args": [
"time-mcp-pypi"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"time-mcp-pypi": {
"command": "uvx",
"args": [
"time-mcp-pypi"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"time-mcp-pypi","command":"uvx","args":["time-mcp-pypi"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"time-mcp-pypi": {
"command": "uvx",
"args": [
"time-mcp-pypi"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"time-mcp-pypi": {
"command": "uvx",
"args": [
"time-mcp-pypi"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"time-mcp-pypi": {
"command": "uvx",
"args": [
"time-mcp-pypi"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"time-mcp-pypi": {
"type": "local",
"command": "uvx",
"args": [
"time-mcp-pypi"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"time-mcp-pypi": {
"command": {
"path": "uvx",
"args": [
"time-mcp-pypi"
]
}
}
}
}Add to your Zed `settings.json`.
uvx time-mcp-pypiRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
Score
39 / 100
Incomplete
- Documentation18/25
- Maintenance16/25
- Trust13/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 35 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 1.1.1Latest | Oct 26, 2025 |
| 1.0.6 | Sep 12, 2025 |