🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

validation-mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

validation-mcp-server

MCP server for Ethereum address/key validation and cryptographic utilities

pipPyPI
Version
1.0.0
Weekly downloads
47
Maintainers
1
Created

Validation MCP Server

PyPI MCP Registry

A Model Context Protocol (MCP) server providing comprehensive Ethereum address validation, private key validation, checksum conversion, and cryptographic utilities.

Features

Tools (15 total)

  • validate_address - Comprehensive Ethereum address validation with EIP-55 checksum verification
  • validate_private_key - Private key validation with range checking
  • to_checksum_address - Convert any address to EIP-55 checksummed format
  • derive_address_from_private_key - Derive Ethereum address from private key
  • derive_address_from_public_key - Derive address from public key (compressed/uncompressed)
  • validate_signature - Validate ECDSA signature components (v, r, s)
  • validate_hex_data - Validate arbitrary hex data for Ethereum use
  • compare_addresses - Compare two addresses for equality
  • batch_validate_addresses - Validate multiple addresses at once
  • generate_vanity_check - Check if address matches vanity criteria
  • keccak256_hash - Compute Keccak-256 hash
  • encode_function_selector - Encode function signature to 4-byte selector
  • decode_function_selector - Decode selector to function signature
  • validate_ens_name - Validate ENS name format (offline)
  • calculate_storage_slot - Calculate contract storage slot positions

Resources

  • validation://eip55-specification - EIP-55 checksum specification
  • validation://secp256k1-constants - Curve parameters
  • validation://function-selectors-db - Common function selectors (500+)
  • validation://address-patterns - Known address patterns
  • validation://known-weak-keys - Weak key information

Prompts

  • Address validation workflow
  • Key security audit
  • Data encoding helper
  • Contract interaction preparation

Installation

pip install -e .

Usage

As MCP Server

Add to your Claude Desktop configuration:

{
  "mcpServers": {
    "validation-mcp-server": {
      "command": "validation-mcp-server"
    }
  }
}

Example Tool Calls

# Validate an address
result = await validate_address("0x5aaeb6053f3e94c9b9a09f33669435e7ef1beaed")

# Derive address from private key
wallet = await derive_address_from_private_key(
    "0x4c0883a69102937d6231471b5dbb6204fe5129617082792ae468d01a3f362318"
)

# Compute function selector
selector = await encode_function_selector("transfer(address,uint256)")
# Returns: 0xa9059cbb

Security Notes

  • Private keys are never logged or persisted
  • All sensitive operations clear memory after use
  • Uses established cryptographic libraries

License

MIT

Keywords

checksum

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts