# Solana DeFi MCP Server (verified)

Billions of Solana DeFi TXNs, Decoded at Scale & accessible via LLM

## Quick Start

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

# Browse available tools
npx -y @smithery/cli@latest tool list neglect/solana-defi

# Get full schema for a tool
npx -y @smithery/cli@latest tool get neglect/solana-defi get-token-metadata

# Call a tool
npx -y @smithery/cli@latest tool call neglect/solana-defi get-token-metadata '{}'
```

## Direct MCP Connection

Endpoint: `https://solana-defi--neglect.run.tools`

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

## Tools (16)

- `get-token-metadata` — Returns the metadata for a given token address stored in the database.
- `get-token-marketdata` — Returns current market-level metrics like price, mcap, txns, holder count, and buy/sell activity. Supports optional tim…
- `get-token-holders` — Returns holder wallet addresses and percentage ownership for a given token address.
- `get-trending-tokens` — Returns a list of trending tokens ordered by transaction count for a given interval.
- `search-tokens` — Performs a flexible search for tokens by name, symbol, or address, with optional filters, sorting, and symbol-only mode.
- `get-latest-graduated-tokens` — Fetches the most recently graduated tokens, ordered by graduation time (descending).
- `get-token-ath` — Fetches the all-time high (ATH) market cap for a token, starting from its graduation time.
- `get-tokens-by-deployer` — Returns a list of tokens where the specified wallet address is the developer (devWallet).
- `get-token-history` — Fetches historical price, market cap, or liquidity snapshots for a token across multiple time windows.
- `get-token-by-pool` — Fetches token metadata for a given pool (market) address.
- `get-token-performance` — Returns percentage performance change for selected metrics over multiple time windows compared to the current value.
- `get-token-price` — Returns the latest price, market cap, and liquidity for a specific token address.
- `get-wallet-holdings` — Retrieve the token holdings of a given wallet address, including balances and percentage ownership per token.
- `get-wallet-token-pnl` — Calculate realized and unrealized profit and loss (PnL) for a wallet on a specific token.
- `get-token-history-range` — Returns the lowest and highest values of selected metrics (price, market cap, liquidity) within a specified time range …
- `get-mcp-config` — Exposes MCP discovery schema for Smithery and other MCP clients.

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