CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Mcp Hashlib

daedalus/mcp-hashlib
STDIOregistry active
Summary

Gives Claude direct access to Python's hashlib for cryptographic operations. You get all the standard hashing algorithms like MD5, SHA family (including SHA3), BLAKE2, and SHAKE, plus key derivation functions like PBKDF2-HMAC and scrypt. The server exposes 22 tools covering everything from basic string hashing to incremental updates, file digests, and algorithm introspection. Reach for this when you need Claude to compute checksums, verify file integrity, or handle password hashing workflows without writing custom tooling. It's a straightforward wrapper over hashlib with stdio transport, so integration is simple.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

mcp-hashlib

An MCP server that exposes hashlib functionality to LLMs.

PyPI Python Ruff

mcp-name: io.github.daedalus/mcp-hashlib

Install

pip install mcp-hashlib

Usage

from mcp_hashlib import mcp, main

Available Tools

The MCP server exposes the following hashlib functions:

  • hash_md5 - MD5 hash
  • hash_sha1 - SHA1 hash
  • hash_sha256 - SHA256 hash
  • hash_sha512 - SHA512 hash
  • hash_sha224 - SHA224 hash
  • hash_sha384 - SHA384 hash
  • hash_sha3_224 - SHA3-224 hash
  • hash_sha3_256 - SHA3-256 hash
  • hash_sha3_384 - SHA3-384 hash
  • hash_sha3_512 - SHA3-512 hash
  • hash_blake2b - BLAKE2b hash (512-bit)
  • hash_blake2s - BLAKE2s hash (256-bit)
  • hash_shake_128 - SHAKE-128 XOF hash
  • hash_shake_256 - SHAKE-256 XOF hash
  • hash_pbkdf2_hmac - PBKDF2-HMAC key derivation
  • hash_scrypt - Scrypt key derivation
  • hash_file_digest - Hash file-like object
  • hash_new - Create hash with any available algorithm
  • hash_info - Get algorithm info
  • hash_update - Incremental hashing
  • hash_copy - Copy hash object
  • hash_properties - Get algorithm properties

Development

git 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/
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Registryactive
Packagemcp-hashlib
TransportSTDIO
UpdatedApr 13, 2026
View on GitHub