CipherTrust Manager

v1.0.0Securitystable

MCP Server for Thales CipherTrust Manager

cdspciphertrustciphertrustmanagerclaude-desktopcursor-ai
Share:
8
Stars
0
Downloads
0
Weekly
0/5

What is CipherTrust Manager?

CipherTrust Manager is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to mcp server for thales ciphertrust manager

MCP Server for Thales CipherTrust Manager

This server falls under the Security category on MCPgee, the world's largest MCP server directory with 33,000+ servers.

Features

  • MCP Server for Thales CipherTrust Manager

Use Cases

Manage encryption and key security through Thales CipherTrust.
Automate key management and cryptographic operations.
sanyambassi

Maintainer

LicenseMIT
Languagepython
Versionv1.0.0
UpdatedApr 1, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

Manual Installation

npx ciphertrust-manager

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

How to Set Up and Use CipherTrust Manager

ciphertrust-manager-mcp-server is a Python-based MCP server that connects AI assistants to Thales CipherTrust Manager, enabling natural-language management of enterprise encryption keys, CTE clients, users, groups, and system services. It communicates with CipherTrust Manager via its REST API and the ksctl CLI, exposing key management and cryptographic operations as MCP tools.

Prerequisites

  • Python 3.11 or newer installed (3.12 recommended)
  • uv package manager installed (pip install uv or winget install astral-sh.uv)
  • Access to a running Thales CipherTrust Manager instance with admin credentials
  • Git to clone the repository
  • Claude Desktop, Cursor, or another MCP-compatible client
1

Clone the repository

Clone the ciphertrust-manager-mcp-server repository to your local machine.

git clone https://github.com/sanyambassi/ciphertrust-manager-mcp-server.git
cd ciphertrust-manager-mcp-server
2

Create and activate a virtual environment

Use uv to create a Python virtual environment and install the package in editable mode.

# macOS/Linux:
uv venv
source .venv/bin/activate
uv pip install -e .

# Windows:
uv venv
.venv\Scripts\activate
uv pip install -e .
3

Create the .env configuration file

Create a .env file in the project root with your CipherTrust Manager connection details. CIPHERTRUST_URL, CIPHERTRUST_USER, and CIPHERTRUST_PASSWORD are required.

CIPHERTRUST_URL=https://your-ciphertrust.example.com
CIPHERTRUST_USER=admin
CIPHERTRUST_PASSWORD=your-secure-password
CIPHERTRUST_NOSSLVERIFY=false
CIPHERTRUST_TIMEOUT=30
CIPHERTRUST_DOMAIN=root
LOG_LEVEL=INFO
4

Test the server runs correctly

Verify the server starts without errors using the uv run command before integrating it with your AI client.

uv run ciphertrust-mcp-server
5

Configure Claude Desktop

Edit the Claude Desktop configuration file to register the CipherTrust Manager MCP server. Use the absolute path to the virtual environment binary.

{
  "mcpServers": {
    "ciphertrust": {
      "command": "/absolute/path/to/.venv/bin/ciphertrust-mcp-server",
      "env": {
        "CIPHERTRUST_URL": "https://your-ciphertrust.example.com",
        "CIPHERTRUST_USER": "admin",
        "CIPHERTRUST_PASSWORD": "your-password",
        "CIPHERTRUST_NOSSLVERIFY": "false"
      }
    }
  }
}
6

Verify with MCP Inspector

Use the MCP Inspector to interactively test available tools before using them through Claude.

npx @modelcontextprotocol/inspector uv run ciphertrust-mcp-server

# Then open http://localhost:5173 in your browser

CipherTrust Manager Examples

Client configuration

Claude Desktop claude_desktop_config.json configuration for CipherTrust Manager MCP server on macOS.

{
  "mcpServers": {
    "ciphertrust": {
      "command": "/Users/yourname/ciphertrust-manager-mcp-server/.venv/bin/ciphertrust-mcp-server",
      "env": {
        "CIPHERTRUST_URL": "https://your-ciphertrust.example.com",
        "CIPHERTRUST_USER": "admin",
        "CIPHERTRUST_PASSWORD": "your-secure-password",
        "CIPHERTRUST_NOSSLVERIFY": "false",
        "CIPHERTRUST_TIMEOUT": "30",
        "LOG_LEVEL": "INFO"
      }
    }
  }
}

Prompts to try

Natural language commands for managing CipherTrust Manager through Claude.

- "List the first 10 encryption keys in CipherTrust Manager"
- "Create a new AES-256 key named 'prod-db-key' in the root domain"
- "Show me all users in the CipherTrust Manager system"
- "List all CTE clients and their current status"
- "What connections are configured in CipherTrust Manager?"

Troubleshooting CipherTrust Manager

SSL certificate verification fails when connecting to CipherTrust Manager

If your CipherTrust Manager uses a self-signed certificate, set CIPHERTRUST_NOSSLVERIFY=true in your .env file or in the env section of the MCP config. For production use, install the CipherTrust Manager CA certificate in your system trust store instead.

Authentication fails with 401 Unauthorized

Verify that CIPHERTRUST_USER and CIPHERTRUST_PASSWORD are correct and the account has API access. CipherTrust Manager may require the user to belong to specific groups with API permissions. Check LOG_LEVEL=DEBUG output for the full error response from the server.

The server starts but no tools appear in Claude Desktop

Restart Claude Desktop after saving the config file. Ensure the path to ciphertrust-mcp-server in the 'command' field is absolute and points to the binary inside the .venv directory. On Windows, the binary path ends in .venv\Scripts\ciphertrust-mcp-server.exe.

Frequently Asked Questions about CipherTrust Manager

What is CipherTrust Manager?

CipherTrust Manager is a Model Context Protocol (MCP) server that mcp server for thales ciphertrust manager It connects AI assistants to external tools and data sources through a standardized interface.

How do I install CipherTrust Manager?

Follow the installation instructions on the CipherTrust Manager GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.

Which AI clients work with CipherTrust Manager?

CipherTrust Manager works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.

Is CipherTrust Manager free to use?

Yes, CipherTrust Manager is open source and available under the MIT license. You can use it freely in both personal and commercial projects.

CipherTrust Manager Alternatives — Similar Security Servers

Looking for alternatives to CipherTrust Manager? Here are other popular security servers you can use with Claude, Cursor, and VS Code.

Casdoor

13.6k

An open-source Agent-first Identity and Access Management (IAM) /LLM MCP & agent gateway and auth server with web UI supporting OpenClaw, MCP, OAuth, OIDC, SAML, CAS, LDAP, SCIM, WebAuthn, TOTP, MFA, Face ID, Google Workspace, Azure AD

ghidraMCP

9.0k

An Model Context Protocol server that enables LLMs to autonomously reverse engineer applications by exposing Ghidra's decompilation and analysis tools. It allows AI agents to list code structures, rename methods, and analyze binaries directly through

HexStrike AI

8.9k

HexStrike AI MCP Agents is an advanced MCP server that lets AI agents (Claude, GPT, Copilot, etc.) autonomously run 150+ cybersecurity tools for automated pentesting, vulnerability discovery, bug bounty automation, and security research. Seamlessly b

IDA Pro MCP

8.7k

Enables AI-assisted reverse engineering in IDA Pro by providing tools to analyze binaries, decompile functions, manage comments, search patterns, and interact with the IDA database through natural language.

Anthropic Cybersecurity Skills

6.6k

754 structured cybersecurity skills for AI agents · Mapped to 5 frameworks: MITRE ATT&CK, NIST CSF 2.0, MITRE ATLAS, D3FEND & NIST AI RMF · agentskills.io standard · Works with Claude Code, GitHub Copilot, Codex CLI, Cursor, Gemini CLI & 20+ platform

Hooker

5.1k

🔥🔥 hooker is a Frida-based reverse engineering toolkit for Android. It offers a user-friendly CLI, universal scripts, auto hook generation, memory roaming to detect activities/services, one-click SOCKS5 proxy setup, Frida JustTrustMe, and BoringSSL u

Browse More Security MCP Servers

Explore all security servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.

Quick Config Preview

{ "mcpServers": { "ciphertrust-manager": { "command": "npx", "args": ["-y", "ciphertrust-manager"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide →

Ready to use CipherTrust Manager?

Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.

33,000+ ServersFree & Open SourceStep-by-Step Guides