Lazy Lions MCP Server
Read the Lazy Lions NFT ecosystem from any AI agent: 10,000 Lions and the Lazy Cubs on Ethereum, Glitch's Army ordinals on Bitcoin, and the $LAZY token economy on Base.
Read-only. No API key. No wallet access.
Install
Claude Code:
claude mcp add lazy-lions -- npx -y lazy-lions-mcp
Claude Desktop — add to claude_desktop_config.json:
{
"mcpServers": {
"lazy-lions": {
"command": "npx",
"args": ["-y", "lazy-lions-mcp"]
}
}
}
Any other MCP client: run npx -y lazy-lions-mcp over stdio.
Tools
Discovery
search_tokens | Filter Lions/Cubs by traits, sale status, unlock status |
smart_search | Natural-language search ("lions with a crown that are for sale") |
get_token | Full detail for one Lion or Cub |
get_traits | Trait catalog with counts — the vocabulary for search_tokens |
get_rarity | Rarity score and rank, blending trait rarity with market signals |
Market
get_floors | Floor price and the cheapest listed token |
get_listings | What's currently for sale |
get_collection_stats | Supply, holders, listed counts, unlock totals |
Holders
get_holder | Everything a wallet owns, aggregated across linked wallets |
get_holder_profile | Public profile, holdings summary, earned Pride Marks |
get_leaderboard | Top holders by NFTs or badges |
$LAZY token
get_lazy_market | Live price, 24h change, volume, liquidity |
get_lazy_protocol | Supply, burned, circulating, locked, pending unlock |
get_lazy_balance | A wallet's liquid + locked $LAZY |
get_lazy_leaderboard | Ranked by tokens burned, or amount locked |
get_lazy_burns | Individual burn events (also a live Cub-reroll feed) |
History
get_token_history | Ownership transfers, or a Cub's full reroll history |
get_recent_changes | Activity feed since a timestamp — for monitoring |
Why a Lazy Lion is useful to an agent
Holding is access. One Lion unlocks the LazyEdge terminal for prediction-market analysis; five unlock the LazyEdge API. Entitlement is verified from the chain with a single ownerOf call — no account, no subscription, and the key is transferable.
Full case: https://lazylionsnft.com/agents/why-hold
Configuration
LAZY_LIONS_API_BASE | https://lazylionsnft.com/v1/agent | Override the API base |
LAZY_LIONS_TIMEOUT_MS | 15000 | Per-request timeout |
Rate limits
60 requests per minute per IP. For monitoring, prefer get_recent_changes or get_lazy_burns with since over re-reading full lists. Details: https://lazylionsnft.com/agents/rate-limits
Under the hood
A thin wrapper over the public Lazy Lions Agent API. Everything here can also be called directly over HTTP — the MCP server exists so agents get a typed, described tool surface instead of raw URLs.
MIT licensed.