Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-daedalus-mcp-hashlib": {
"args": [
"mcp-hashlib"
],
"command": "uvx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An MCP server that exposes hashlib functionality to LLMs.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
uvx 'mcp-hashlib' 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-hashlib against OSV.dev.
Click any tool to inspect its schema.
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 developer-tools / security
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
MCP server for accessing Figma plugin console logs and screenshots via Cloudflare Workers or local mode
MCP Security Weekly
Get CVE alerts and security updates for io.github.daedalus/mcp-hashlib and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP server that exposes hashlib functionality to LLMs.
mcp-name: io.github.daedalus/mcp-hashlib
pip install mcp-hashlib
from mcp_hashlib import mcp, main
The MCP server exposes the following hashlib functions:
hash_md5 - MD5 hashhash_sha1 - SHA1 hashhash_sha256 - SHA256 hashhash_sha512 - SHA512 hashhash_sha224 - SHA224 hashhash_sha384 - SHA384 hashhash_sha3_224 - SHA3-224 hashhash_sha3_256 - SHA3-256 hashhash_sha3_384 - SHA3-384 hashhash_sha3_512 - SHA3-512 hashhash_blake2b - BLAKE2b hash (512-bit)hash_blake2s - BLAKE2s hash (256-bit)hash_shake_128 - SHAKE-128 XOF hashhash_shake_256 - SHAKE-256 XOF hashhash_pbkdf2_hmac - PBKDF2-HMAC key derivationhash_scrypt - Scrypt key derivationhash_file_digest - Hash file-like objecthash_new - Create hash with any available algorithmhash_info - Get algorithm infohash_update - Incremental hashinghash_copy - Copy hash objecthash_properties - Get algorithm propertiesgit clone https://github.com/daedalus/mcp-hashlib.git
cd mcp-hashlib
pip install -e ".[test]"
# run tests
pytest
# format
ruff format src/ tests/
# lint
ruff check src/ tests/
# type check
mypy src/