MCP Catalogs
Home

time vs ciphertrust-manager-mcp-server

Side-by-side comparison to help you pick between these two MCP servers.

time
by modelcontextprotocol
ciphertrust-manager-mcp-server
by sanyambassi
Stars★ 85,748★ 8
30d uses
Score7738
Official
Categories
ProductivityDeveloper ToolsCommunication
SecurityDeveloper ToolsOps & Infra
LanguageTypeScriptPython
Last committhis month9 mo ago

time · Summary

A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.

ciphertrust-manager-mcp-server · Summary

MCP Server for Thales CipherTrust Manager enabling AI assistants to interact with cryptographic key management operations through the ksctl CLI.

time · Use cases

  • Assisting with international meeting scheduling across time zones
  • Providing real-time time information for location-based queries
  • Enabling time conversion for travel planning and itineraries

ciphertrust-manager-mcp-server · Use cases

  • AI assistants performing cryptographic key management operations through natural language
  • DevOps teams automating security workflows using AI assistants with access to CipherTrust Manager
  • Security administrators managing cryptographic infrastructure through conversational AI interfaces

time · Install

Installation Options

**Using uv (recommended):**

uvx mcp-server-time

**Using PIP:**

pip install mcp-server-time
python -m mcp_server_time

**Configure for Claude Desktop:**

{
  "mcpServers": {
    "time": {
      "command": "uvx",
      "args": ["mcp-server-time"]
    }
  }
}

ciphertrust-manager-mcp-server · Install

Installation

Prerequisites

  • Git
  • Python 3.11 or higher
  • uv for dependency management
  • Access to a CipherTrust Manager instance

Installation Steps

  1. Clone the repository:
git clone https://github.com/sanyambassi/ciphertrust-manager-mcp-server.git
cd ciphertrust-manager-mcp-server
  1. Create a virtual environment and install dependencies:
uv venv
.venv\Scripts\activate  (Windows) or .venv/bin/activate (Unix)
uv pip install -e .
  1. Configure environment variables (create .env file):
CIPHERTRUST_URL=https://your-ciphertrust-manager.example.com
CIPHERTRUST_USER=admin
CIPHERTRUST_PASSWORD=your-password-here
CIPHERTRUST_NOSSLVERIFY=true

Integration with Claude Desktop

Add the following to your Claude Desktop configuration file:

{
  "mcpServers": {
    "ciphertrust": {
      "command": "/absolute/path/to/ciphertrust-manager-mcp-server/.venv/bin/ciphertrust-mcp-server",
      "env": {
        "CIPHERTRUST_URL": "https://your-ciphertrust.example.com",
        "CIPHERTRUST_USER": "admin",
        "CIPHERTRUST_PASSWORD": "your-password-here"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.