Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-daedalus-mcp-cryptography": {
"args": [
"mcp-cryptography"
],
"command": "uvx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server exposing cryptography library functionality.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
uvx 'mcp-cryptography' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked mcp-cryptography against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in security
An evil MCP server used for redteam testing
AI-powered reverse engineering assistant that bridges IDA Pro with language models through MCP.
Proof primitive for AI agents on MultiversX. Anchor file hashes on-chain as verifiable proofs.
mcpki-server is the backend infrastructure for https://www.mcpki.org, enabling secure public key management and autonomous certificate handling for large language models (LLMs).
MCP Security Weekly
Get CVE alerts and security updates for io.github.daedalus/mcp-cryptography and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MCP server exposing cryptography library functionality.
mcp-name: io.github.daedalus/mcp-cryptography
pip install mcp-cryptography
from mcp_cryptography import mcp
# Run the MCP server
if __name__ == "__main__":
mcp.run()
The server provides the following cryptographic tools:
generate_symmetric_key - Generate a Fernet symmetric keygenerate_rsa_key - Generate an RSA key pairgenerate_x25519_key - Generate an X25519 key pairfernet_encrypt / fernet_decrypt - Fernet encryptionaes_encrypt / aes_decrypt - AES encryption (CBC/GCM modes)rsa_encrypt / rsa_decrypt - RSA OAEP encryptionrsa_sign / rsa_verify - RSA digital signatureshash_sha256 - SHA-256 hashhash_sha512 - SHA-512 hashhash_sha1 - SHA-1 hashhmac_sign - Generate HMAChmac_verify - Verify HMACpbkdf2_derive - PBKDF2 key derivationscrypt_derive - Scrypt key derivationgenerate_self_signed_cert - Generate self-signed certificateparse_certificate - Parse X.509 certificategenerate_random_bytes - Generate random bytesgenerate_random_base64 - Generate random base64 bytesgit clone https://github.com/daedalus/mcp-cryptography.git
cd mcp-cryptography
pip install -e ".[test]"
# run tests
pytest
# format
ruff format src/ tests/
# lint
ruff check src/ tests/
# type check
mcp_cryptography src/