MCP server for ECDSA cryptography
SaferSkills independently audited mcp-ecdsa (MCP Server) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
MCP server for ECDSA cryptography
mcp-name: io.github.daedalus/mcp-ecdsa
pip install mcp-ecdsaConfigure in your MCP client:
{
"mcpServers": {
"mcp-ecdsa": {
"command": "mcp-ecdsa"
}
}
}from mcp_ecdsa import generate_key, sign_data, verify_signature
# Generate key pair
result = await generate_key({"curve": "NIST256p"})
data = json.loads(result[0].text)
# Sign data
sign_result = await sign_data({
"private_key": data["private_key"],
"data": "Hello, World!"
})
# Verify signature
verify_result = await verify_signature({
"public_key": data["public_key"],
"signature": json.loads(sign_result[0].text)["signature"],
"data": "Hello, World!"
})| Tool | Description |
|---|---|
generate_key | Generate ECDSA key pair |
sign_data | Sign data (with hashing) |
sign_digest | Sign pre-hashed digest |
verify_signature | Verify signature over data |
verify_digest_signature | Verify signature over digest |
import_private_key | Import from PEM/DER/base64 |
import_public_key | Import from PEM/DER/base64 |
export_private_key | Export to PEM/DER/base64/SSH |
export_public_key | Export to PEM/DER/base64/SSH |
get_key_info | Get key information |
recover_public_key | Recover public keys from signature |
git clone https://github.com/daedalus/mcp-ecdsa.git
cd mcp-ecdsa
pip install -e ".[test]"
# run tests
pytest
# format
ruff format src/ tests/
# lint
ruff check src/ tests/
# type check
mypy src/~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.