xrpl identity mcp for VS Code
io.github.jarod-vyent/xrpl-identity-mcp
MCP server for XRPL identity: DIDs, credentials, signer lists, and safe transaction workflows.
client:VS Code
transport:stdio
runtime:npm
Install xrpl identity mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "xrpl-network",
"description": "XRPL_NETWORK",
"password": true
},
{
"type": "promptString",
"id": "xrpl-endpoint",
"description": "XRPL_ENDPOINT",
"password": true
},
{
"type": "promptString",
"id": "allow-mainnet-submit",
"description": "ALLOW_MAINNET_SUBMIT",
"password": true
}
],
"servers": {
"xrpl-identity-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"xrpl-identity-mcp"
],
"env": {
"XRPL_NETWORK": "${input:xrpl-network}",
"XRPL_ENDPOINT": "${input:xrpl-endpoint}",
"ALLOW_MAINNET_SUBMIT": "${input:allow-mainnet-submit}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs