Server Configuration
Describes the environment variables required to run the server.
Name | Required | Description | Default |
---|---|---|---|
No arguments |
Schema
Prompts
Interactive templates invoked by user choice
Name | Description |
---|---|
No prompts |
Resources
Contextual data attached and managed by the client
Name | Description |
---|---|
No resources |
Tools
Functions exposed to the LLM to take actions
Name | Description |
---|---|
getNetworks | REQUIRED FIRST STEP: Get all supported blockchain networks. Always call this first to see available networks before using any network-specific functions. Returns network IDs like "ethereum", "solana", etc. |
getNetworkDexes | Get available DEXes on a specific network. First call getNetworks to see valid network IDs. |
getNetworkPools | PRIMARY POOL FUNCTION: Get top liquidity pools on a specific network. This is the MAIN way to get pool data - there is NO global pools function. Use this instead of any "getTopPools" or "getAllPools" concepts. |
getDexPools | Get pools from a specific DEX on a network. First use getNetworks, then getNetworkDexes to find valid DEX IDs. |
getPoolDetails | Get detailed information about a specific pool. Requires network ID from getNetworks and a pool address. |
getTokenDetails | Get detailed information about a specific token on a network. First use getNetworks to get valid network IDs. |
getTokenPools | Get liquidity pools containing a specific token on a network. Great for finding where a token is traded. |
getPoolOHLCV | Get historical price data (OHLCV) for a pool - essential for price analysis, backtesting, and visualization. Requires network and pool address. |
getPoolTransactions | Get recent transactions for a specific pool. Shows swaps, adds, removes. Requires network and pool address. |
search | Search across ALL networks for tokens, pools, and DEXes by name, symbol, or address. Good starting point when you don't know the specific network. |
getStats | Get high-level statistics about the DexPaprika ecosystem: total networks, DEXes, pools, and tokens available. |