1. Conduid
  2. Developer Tools
  3. time-mcp-pypi
MCP server · Developer Tools

time-mcp-pypi

⏰🐍 Minimal Python MCP server example, for getting current time

Unclaimed MIT last commit 10 months ago devtools
54Fair

Scored yesterday · breakdown

About time-mcp-pypi

time-mcp-pypi is an MCP server published by domdomegg in the Developer Tools category: ⏰🐍 Minimal Python MCP server example, for getting current time. It has been installed 0 times through Conduid.

The repository has 4 stars and 2 forks, with the last commit 10 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx time-mcp-pypi

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about time-mcp-pypi

Powered by Claude · Grounded in docs

I know everything about time-mcp-pypi. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

v1.1.1v1.1.1 · 26 Oct 2025Full Changelog**: https://github.com/domdomegg/time-mcp-pypi/compare/v1.1.0...v1.1.1
v1.0.6v1.0.6 · 12 Sep 2025Patch release
v1.0.5v1.0.5 · 12 Sep 2025Patch release
v1.0.1v1.0.1 · 4 Sep 2025Full Changelog**: https://github.com/domdomegg/time-mcp-pypi/compare/v1.0.0...v1.0.1

README

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:

  1. Update the version in pyproject.toml, and commit as Release x.y.z

  2. Tag the release with a version number prefixed with 'v':

    git tag v1.0.1
    
  3. 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

README mirrored from the source repository yesterday. The original is authoritative.

Questions

About time-mcp-pypi

How do I install time-mcp-pypi?

Run npx time-mcp-pypi, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is time-mcp-pypi safe to use with an AI agent?

Its trust score is 54 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is time-mcp-pypi still maintained?

The last commit was 10 months ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.