Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"mcp-ecdsa": {
"command": "mcp-ecdsa"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
from mcp_ecdsa import generate_key, sign_data, verify_signature
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
uvx 'mcp-ecdsa' 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-ecdsa 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 security
An evil MCP server used for redteam testing
Proof primitive for AI agents on MultiversX. Anchor file hashes on-chain as verifiable proofs.
AI-powered reverse engineering assistant that bridges IDA Pro with language models through MCP.
Security-first platform for AI agents. 38 specialized agents, 15 AI-powered extensions, zero-knowledge multi-agent orchestration. SENTINEL WAF, Ed25519 auth, 2.6M grounding facts.
MCP Security Weekly
Get CVE alerts and security updates for io.github.daedalus/mcp-ecdsa and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MCP server for ECDSA cryptography
mcp-name: io.github.daedalus/mcp-ecdsa
pip install mcp-ecdsa
Configure 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/