Crypto_MCP
A server for cryptographic operations like encryption, decryption, and hashing.
Crypto_MCP
A Model Context Protocol (MCP) server for encrypting/decrypting/algorithm/hash
📝 Description
A Model Context Protocol (MCP) server for encrypting/decrypting/algorithm/hash.
📺 Demo
✨ Features
- Support AES encryption and decryption (128 bits)
- Support mode: ECB, CBC, CFB, OFB, CTR
- Support padding mode: Pkcs7, Iso97971, AnsiX923, Iso10126, ZeroPadding, NoPadding.
- Support output format: base64, hex
- Support input format: base64, hex
- Support MD5, SHA1, SHA256, SHA384, SHA512, SHA224 algorithm
- Support DES encryption and decryption (64 bits)
- Support mode: ECB, CBC, CFB, OFB, CTR
- Support padding mode: Pkcs7, Iso97971, AnsiX923, Iso10126, ZeroPadding, NoPadding.
- Support Base64 encode and decode
- Support Hex encode and decode
🔮 Comming Soon
- Support more encryption and decryption algorithms
📦 Installation
Installing via Smithery
To install Crypto_MCP for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @1595901624/crypto-mcp --client claude
Manual Installation
- Clone the Repository
git clone https://github.com/1595901624/crypto-mcp.git
- Install Dependencies
pnpm install
- Build the Project
pnpm run build
- Add to your Claude Desktop MCP settings file
{
"mcpServers": {
"crypto-mcp": {
"command": "node",
"args": ["path/to/crypto-mcp/build/index.js"],
"disabled": false,
"autoApprove": []
}
}
}
🔧 Usage
Available Tools
AES
aes_encrypt: Encrypt text with AES parameters:text: The text to encrypt (Required)key: The key to encrypt the text (optional, default is your-key-0123456)padding: The padding mode (optional, default is Pkcs7)outputFormat: The output format (optional, default is base64)iv: The initialization vector (optional, default is your-iv-01234567)mode: The mode to encrypt the text (optional, default is ECB)
aes_decrypt: Decrypt text with AES parameters:text: The text to decrypt (Required)key: The key to decrypt the text (optional, default is your-key-0123456)padding: The padding mode (optional, default is Pkcs7)inputFormat: The input format (optional, default is base64)iv: The initialization vector (optional, default is your-iv-01234567)mode: The mode to decrypt the text (optional, default is ECB)
Digest
md5: Calculate MD5 hash of a string parameters:input: The input string to hash (Required)
sha1: Calculate SHA-1 hash of a string parameters:input: The input string to hash (Required)
sha256: Calculate SHA-256 hash of a string parameters:input: The input string to hash (Required)
sha384: Calculate SHA-384 hash of a string parameters:input: The input string to hash (Required)
sha512: Calculate SHA-512 hash of a string parameters:input: The input string to hash (Required)
sha224: Calculate SHA-224 hash of a string parameters:input: The input string to hash (Required)
DES
des_encrypt: Encrypt text with DES parameters:text: The text to encrypt (Required)key: The key to encrypt the text (optional, default is your-key)padding: The padding mode (optional, default is Pkcs7)outputFormat: The output format (optional, default is base64)iv: The initialization vector (optional, default is your-iv-)mode: The mode to encrypt the text (optional, default is ECB)
des_decrypt: Decrypt text with DES parameters:text: The text to decrypt (Required)key: The key to decrypt the text (optional, default is your-key)padding: The padding mode (optional, default is Pkcs7)inputFormat: The input format (optional, default is base64)iv: The initialization vector (optional, default is your-iv-)mode: The mode to decrypt the text (optional, default is ECB)
Base64
base64_encode: Encode text to base64 parameters:content: The text to encode (Required)
base64_decode: Decode base64 to text parameters:content: The base64 text to decode (Required)
Hex
hex_encode: Encode text to hex parameters:content: The text to encode (Required)
hex_decode: Decode hex to text parameters:content: The hex text to decode (Required)
📝 Development
# Install dependencies
npm install
# Build the project
npm run build
# Development with auto-rebuild
npm run watch
📝 License
This project is licensed under the MIT License. See the LICENSE file for details.
Related Servers
Scout Monitoring MCP
sponsorPut performance and error data directly in the hands of your AI assistant.
Alpha Vantage MCP Server
sponsorAccess financial market data: realtime & historical stock, ETF, options, forex, crypto, commodities, fundamentals, technical indicators, & more
Openapi MCP
An MCP server that lets LLMs inspect and interact with OpenAPI specifications.
SMART-E2B
Integrates E2B for secure code execution in cloud sandboxes, designed for Claude AI Desktop.
Flow MCP
A set of tools for interacting with the Flow blockchain through the Model Context Protocol.
Superface
Provides Superface tools for the Model Context Protocol, requiring a SUPERFACE_API_KEY.
DocC MCP
Exposes Apple DocC documentation archives to AI agents, enabling real-time access to Swift documentation.
MCP-Insomnia
An MCP server for AI agents to create and manage API collections in Insomnia-compatible format.
Pulsar Edit MCP Server
An experimental MCP server to control the Pulsar editor, enabling LLM assistance for software development.
Linkinator
A Model Context Protocol (MCP) server that provides link checking capabilities using linkinator. This allows AI assistants like Claude to scan webpages and local files for broken links.
GemForge (Gemini Tools)
Integrates Google's Gemini for advanced codebase analysis, web search, and processing of text, PDFs, and images.
Agent Forge
A platform for creating and managing AI agents with specific personalities and simulating their responses. Requires a DeepSeek API key.