What is the io.github.vdappdev2/address MCP server?
MCP server for Verus addresses — generate, validate, list transparent and shielded addresses
How to install io.github.vdappdev2/address
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"address": {
"command": "npx",
"args": [
"-y",
"@verusidx/address-mcp"
]
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"address": {
"command": "npx",
"args": [
"-y",
"@verusidx/address-mcp"
]
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"address": {
"command": "npx",
"args": [
"-y",
"@verusidx/address-mcp"
]
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"address": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@verusidx/address-mcp"
]
}
}
}Claude Code
claude mcp add address -- npx -y @verusidx/address-mcpRelated MCP servers
Foundation MCP server — chain discovery, daemon management, health checks, raw transactions
View repository →MCP server for Verus on-chain data retrieval, decryption, signing, and verification
View repository →MCP server for defining Verus currencies — tokens, fractional baskets, centralized, ERC-20 mapped
View repository →MCP server for VerusID identities — register, update, revoke, recover, query, set timelock
View repository →MCP server for Verus on-chain marketplace — create, browse, accept, and close offers
View repository →MCP server for Verus currency — send, convert, cross-chain transfer, balance/path/tx queries
View repository →