Skip to main content
Choose the framework or host where you want to run WalletSuite MCP. All paths require Node.js 22 or newer for the local npx setup.
Claude Desktop reads MCP servers from claude_desktop_config.json.Common locations:
  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\\Claude\\claude_desktop_config.json
If the file does not exist yet, create it.

Add WalletSuite MCP

{
  "mcpServers": {
    "walletsuite": {
      "command": "npx",
      "args": ["-y", "@walletsuite/mcp-server"],
      "env": {
        "WALLETSUITE_API_KEY": "your-key",
        "MCP_BANDS": "read"
      }
    }
  }
}
After saving, fully restart Claude Desktop so it reloads MCP servers.

Verify

  • What's the ETH price right now?
  • Check balances for 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045
  • Show me recent transactions for 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 on ethereum

Troubleshooting

  • Authentication is required — API key is missing or empty. Check WALLETSUITE_API_KEY.
  • Server does not appear — verify JSON is valid, file is in the correct location, and Claude Desktop was fully restarted.
  • npx is not found — install Node.js 22 or newer.

Next steps