Skip to content
VS Code

sigil for VS Code

io.github.cdrn/sigil

Local keystore + MCP server. Claude can sign EVM transactions but never sees the private key.

client:VS Code transport:stdio runtime:npm

Install sigil in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "sigil-home",
      "description": "SIGIL_HOME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sigil-control-sock",
      "description": "SIGIL_CONTROL_SOCK",
      "password": true
    }
  ],
  "servers": {
    "sigil": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "sigild"
      ],
      "env": {
        "SIGIL_HOME": "${input:sigil-home}",
        "SIGIL_CONTROL_SOCK": "${input:sigil-control-sock}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

sigil in other clients