# SLAMai MCP Server (Base & Ethereum DeFi)

A unified DeFi data server for Ethereum and Base, delivering real-time token prices, market analytics, and historical on-chain activity. Built for traders, analysts, and developers, it powers dashboa…

## Quick Start

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

# Browse available tools
npx -y @smithery/cli@latest tool list slamai/mcp-server

# Get full schema for a tool
npx -y @smithery/cli@latest tool get slamai/mcp-server TokenPrice

# Call a tool
npx -y @smithery/cli@latest tool call slamai/mcp-server TokenPrice '{}'
```

## Direct MCP Connection

Endpoint: `https://mcp-server--slamai.run.tools`

**Required config:**
- `apiKey` (query) — Your service API key for authentication. Passed as a query parameter (?apiKey=YOUR_API_KEY).

## Tools (3)

- `TokenPrice` — Get prices across timeframes. Defaults to USD if no quote token given. Use ERC20 for custom quotes.
- `TokenTransfers` — Get transfer details. Defaults to entire chain if no filters given. Use cursor from response to paginate.
- `TokenDiscovery` — List of popular (current or historical), trending or newest tokens.

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