mcp-server-chart vs ciphertrust-manager-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | ciphertrust-manager-mcp-server by sanyambassi | |
|---|---|---|
| Stars | ★ 4,068 | ★ 8 |
| 30d uses | 10,239 | — |
| Score | 84 | 38 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | SecurityDeveloper ToolsOps & Infra |
| Language | TypeScript | Python |
| Last commit | this month | 9 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
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.
mcp-server-chart · Use cases
- Data analysts creating visual reports from datasets
- AI assistants generating custom charts based on user requests
- Web applications embedding visualization capabilities via HTTP API
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
mcp-server-chart · Install
Installation
Install globally:
npm install -g @antv/mcp-server-chartFor Desktop Apps (e.g., Claude Desktop, VSCode):
{
"mcpServers": {
"mcp-server-chart": {
"command": "npx",
"args": ["-y", "@antv/mcp-server-chart"]
}
}
}For Windows:
{
"mcpServers": {
"mcp-server-chart": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
}
}
}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
- Clone the repository:
git clone https://github.com/sanyambassi/ciphertrust-manager-mcp-server.git
cd ciphertrust-manager-mcp-server- Create a virtual environment and install dependencies:
uv venv
.venv\Scripts\activate (Windows) or .venv/bin/activate (Unix)
uv pip install -e .- Configure environment variables (create .env file):
CIPHERTRUST_URL=https://your-ciphertrust-manager.example.com
CIPHERTRUST_USER=admin
CIPHERTRUST_PASSWORD=your-password-here
CIPHERTRUST_NOSSLVERIFY=trueIntegration 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"
}
}
}
}