Examples
Use these examples as starting points when you want a ready-made client config or a flow example.
Last updated
{
"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"
}
}
}
}{
"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": {}
}
}
}