Nukez

§ docs · mcp

MCP

Live · Cloud Run

Overview

Nukez MCP Server

The Nukez MCP server exposes fourteen tools that match /v1/tools.json. The agent signs the envelope client-side; the server never holds a key.

Install

$ npx @nukez/mcp --install-claude-desktop
# writes the server config into ~/.claude/mcp.json
# same --install-cursor flag for Cursor

Tool invocation (agent-side)

// Agent calls a tool:
{
  "tool": "nukez.store",
  "input": {
    "locker": "lkr_7a2c...e9f3",
    "bytes": "base64...",
    "envelope_sig": "0xa1b2...",
    "envelope_algo": "ed25519"  // or "secp256k1"
  }
}

§ next