Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Ecdsa

FreeNot checked

MCP server for ECDSA cryptography enabling key generation, signing, and verification.

GitHubEmbed

About

MCP server for ECDSA cryptography enabling key generation, signing, and verification.

README

MCP server for ECDSA cryptography

PyPI Python Ruff

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

Install

pip install mcp-ecdsa

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_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

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/

from github.com/daedalus/mcp-ecdsa

Install Ecdsa in Claude Desktop, Claude Code & Cursor

Recommended · one command, every IDE
unyly install mcp-ecdsa

Installs into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.

First time? Get the CLI: curl -fsSL https://unyly.org/install | sh

Or configure manually

Run in your terminal:

claude mcp add mcp-ecdsa -- uvx mcp-ecdsa

FAQ

Is Ecdsa MCP free?

Yes, Ecdsa MCP is free — one-click install via Unyly at no cost.

Does Ecdsa need an API key?

No, Ecdsa runs without API keys or environment variables.

Is Ecdsa hosted or self-hosted?

A hosted option is available: Unyly runs the server in the cloud, no local setup required.

How do I install Ecdsa in Claude Desktop, Claude Code or Cursor?

Open Ecdsa on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Compare Ecdsa with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All development MCPs