# baseguard-walletguard

On-chain token safety and wallet intelligence for autonomous agents. BaseGuard checks if a token is safe to trade (deployer age, LP lock, holder concentration, risk score 0-100). WalletGuard profiles…

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add riamsantky/baseguard-walletguard

# Browse available tools
npx -y @smithery/cli@latest tool list riamsantky/baseguard-walletguard

# Get full schema for a tool
npx -y @smithery/cli@latest tool get riamsantky/baseguard-walletguard check_token_safety

# Call a tool
npx -y @smithery/cli@latest tool call riamsantky/baseguard-walletguard check_token_safety '{}'
```

## Direct MCP Connection

Endpoint: `https://baseguard-walletguard--riamsantky.run.tools`

## Tools (4)

- `check_token_safety` — Full token safety analysis. Returns a risk score (0-100, lower is safer), a SAFE / CAUTION / AVOID recommendation, a co…
- `check_token_safety_lite` — Fast token pre-trade check — deployer wallet age and LP lock status only, no holder concentration analysis. Typically c…
- `check_wallet` — Full wallet intelligence profile for any EVM address. Returns a CLEAN / SUSPICIOUS / FLAGGED verdict, composite risk sc…
- `check_wallet_quick` — Fast wallet check — wallet age in days and outgoing transaction count only. Typically completes in under 2 seconds. Ret…

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get riamsantky/baseguard-walletguard <tool-name>
```

## Prompts (1)

- `token-safety-check` (contractAddress, chainId) — Check if a token is safe before trading
