mcp-ecdsa
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-ecdsaGenerate a new ECDSA key pair"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mcp-ecdsa
MCP server for ECDSA cryptography
mcp-name: io.github.daedalus/mcp-ecdsa
Install
pip install mcp-ecdsaRelated MCP server: mcp-server-insumer
Usage
As MCP Server
Configure in your MCP client:
{
"mcpServers": {
"mcp-ecdsa": {
"command": "mcp-ecdsa"
}
}
}Python API
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!"
})Tools
Tool | Description |
| Generate ECDSA key pair |
| Sign data (with hashing) |
| Sign pre-hashed digest |
| Verify signature over data |
| Verify signature over digest |
| Import from PEM/DER/base64 |
| Import from PEM/DER/base64 |
| Export to PEM/DER/base64/SSH |
| Export to PEM/DER/base64/SSH |
| Get key information |
| Recover public keys from signature |
Supported Curves
NIST192p, NIST224p, NIST256p, NIST384p, NIST521p
SECP256k1
Ed25519, Ed448
Supported Hash Functions
SHA1, SHA224, SHA256, SHA384, SHA512
SHA3-256, SHA3-384, SHA3-512
Development
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/Maintenance
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/daedalus/mcp-ecdsa'
If you have feedback or need assistance with the MCP directory API, please join our Discord server