> For the complete documentation index, see [llms.txt](https://docs-core.allbridge.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs-core.allbridge.io/ai/local-signer-mcp/examples.md).

# Examples

### What belongs here

* Claude Desktop config examples
* Claude Code registration examples
* Cursor and Windsurf JSON snippets
* Docker-based registration examples
* remote connector examples
* Node path examples

### What should not belong here

* bridge-planning docs
* route quotation docs
* docs for Allbridge Core integration logic
* private-key management outside the local signer scope

### Canonical snippets

#### Claude Code

```bash
claude mcp add local-signer -- node SIGNER_ENTRYPOINT_PATH
```

#### Claude Desktop

```json
{
  "mcpServers": {
    "local-signer": {
      "command": "NODE_BINARY_PATH",
      "args": ["SIGNER_ENTRYPOINT_PATH"],
      "env": {
        "LOCAL_SIGNER_EVM_PRIVATE_KEY": "YOUR_EVM_PRIVATE_KEY",
        "LOCAL_SIGNER_EVM_RPC_URL": "YOUR_RPC_URL"
      }
    }
  }
}
```

#### Cursor or similar client

```json
{
  "mcpServers": {
    "local-signer": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--env-file",
        "LOCAL_SIGNER_ENV_FILE",
        "allbridge/local-signer-mcp:latest",
        "node",
        "dist/index.js"
      ],
      "env": {}
    }
  }
}
```

#### What this page is for

This page is a quick index for copy-paste starting points.

For full setup guidance, use:

* Client Integrations
* Transport and Security
* Usage
