# Crypto.com (verified)

Access real-time and historical cryptocurrency market data. Track prices, volume, and trends across coins and exchanges.

## Quick Start

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

# Browse available tools
npx -y @smithery/cli@latest tool list crypto

# Get full schema for a tool
npx -y @smithery/cli@latest tool get crypto get_tickers

# Call a tool
npx -y @smithery/cli@latest tool call crypto get_tickers '{}'
```

## Direct MCP Connection

Endpoint: `https://crypto.run.tools`

## Tools (9)

- `get_tickers` — Tickers for an instrument or all
- `get_ticker` — Single ticker for an instrument
- `get_instruments` — List all available trading instruments
- `get_book` — Order book snapshot (bids/asks)
- `get_candlestick` — Recent candlesticks for an instrument and timeframe (returns up to 50)
- `get_index_price` — Index price for an instrument
- `get_trades` — Recent trades (default 10, max 150)
- `get_mark_price` — Mark price for an instrument
- `get_instrument` — Instrument detail for an instrument by id

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