New Your team’s decisions, in one playbook every coding agent works from. Never answer your agent twice

search_liquidity_pools

Maps to GET /pools. Discovers liquidity pools across supported AMMs and chains, returning id, poolId, symbol, underlyingTokens (token addresses), fee tier, protocol, dexKind, APY, apyBase (fee-only APY excluding reward emissions), TVL (USD), 24h/7d volume (USD), stablecoin flags, and hooksAddress...

SERVERSwapwizard SOURCE@swapwizard/mcp-server
Low RISK CLASS
Category Read
Parameters 121 required
Recommended Allowedsee the rule below
Registry record Grade D, identity unverified Pull the record →

This record as markdown: /tools/defire-business-swapwizard-mcp/search-liquidity-pools.md

What search_liquidity_pools does on Swapwizard

AI agents call search_liquidity_pools to retrieve information from Swapwizard without modifying anything. It is typically the context-gathering step in research, monitoring, and reporting workflows, before the agent takes action elsewhere.

ParameterTypeRequiredDescription
page integer Page number, 0-based (default: 0)
search string Search by symbol or project name
signal string Filter by momentum signal. Comma-separated list allowed (e.g. 'entry' or 'entry,watch'). Only effective with trending=true. Combine with sortBy=signal&sortOrder
sortBy string Sort field (default: tvl). 'signal' (trending only) groups pools by momentum signal entry→watch→exit (sortOrder=asc reverses) and within each group by APR desce
tokens string Comma-separated token addresses to filter pools by
chainId integer Yes EVM chain ID (e.g. 56 for BSC, 1 for Ethereum)
dexKind string Filter by DEX kind (e.g. UNIV3_SR02)
project string Filter by protocol/DEX name (e.g. uniswap-v3, pancakeswap-v3, aerodrome-v2)
hookless boolean If true, exclude pools with a custom hook contract (Uniswap V4 / PancakeSwap Infinity). Hooks can add custom fees or transfer restrictions.
pageSize integer Results per page, max 200 (default: 50)
poolType string Filter by pool type
trending boolean If true, return only currently trending pools (with momentumSignal and suggestedRangePct on each result)

Parameters from the server's own tool schema.

Why search_liquidity_pools is rated Low

This tool retrieves and queries pool data from supported AMMs across chains. It is a pure read operation that discovers and returns pool metadata without side effects. While the broader server enables financial transactions (swaps, zaps), this specific tool only queries and searches existing pools. The presence of hook contract addresses in responses does not change this—it is informational data, not execution.

From the tool's definition Maps to GET /pools. Discovers liquidity pools... returning id, poolId, symbol, underlyingTokens, fee tier, protocol, dexKind, APY, apyBase, TVL, 24h/7d volume, stablecoin flags, and hooksAddress. Use `trending: true` to get only pools currently trending.

Risk signalsHigh parameter count (17 properties)

Questions about search_liquidity_pools

What does the search_liquidity_pools tool do? +

Maps to GET /pools. Discovers liquidity pools across supported AMMs and chains, returning id, poolId, symbol, underlyingTokens (token addresses), fee tier, protocol, dexKind, APY, apyBase (fee-only APY excluding reward emissions), TVL (USD), 24h/7d volume (USD), stablecoin flags, and hooksAddress (custom hook contract for Uniswap V4 / PancakeSwap Infinity pools; null when the pool has no hook — hooks can add custom fees or transfer restrictions). KEY PARAMETERS: Use trending: true to get only pools currently trending, optionally with timeframe ("5m", "1h", "6h", "24h") to select the ranking window — default is 5m. Trending results include feeAprEstimate: fee APR (%) annualized from the selected timeframe's volume window over the pool reserve (null outside trending mode or when the fee tier is unknown). NOTE: feeAprEstimate extrapolates a short window to a year — for short timeframes on hot pools it can be extreme and short-lived; the apy field is the stable 24h-based metric. MOMENTUM SIGNAL (1h/6h/24h windows, powered by on-chain DEX trade data): each trending pool carries momentumSignal — "entry" (volume accelerating with healthy LP flow — a pool worth entering), "watch" (in the ranking but not yet actionable), or "exit" (dying volume or LPs leaving). Supporting fields: momentumScore (composite acceleration x size x flow quality), momentumRatioH1/H6/H24 (volume vs the previous equal window), momentumTakersH6 (unique traders 6h), lpMintsH6/lpBurnsH6 and lpNetFlowH6 (inflow/outflow/flat — are LPs adding or pulling liquidity). The 5m window carries the signal as HOURLY CONTEXT (last hourly cycle, not the last 5 minutes), since 5m is real-time GeckoTerminal data. Each pool also carries suggestedRangePct: a suggested concentrated-liquidity range (± percent) balancing fee density against time-in-range — ~0.5% for stable pairs, tens of percent for volatile/memecoin pairs — pass it to zap_into_lp_position. To ENTER the hottest profitable pool: trending: true, timeframe: "6h", signal: "entry", sortBy: "signal", sortOrder: "desc" returns entry-signal pools ranked by APR. (Use timeframe "6h" for sustained traction / LP-yield strategies, "1h" for faster reaction.) To check whether to EXIT, read momentumSignal on list_user_lp_positions instead. Use hookless: true to exclude pools with a custom hook contract. Use sortBy ("apy", "tvl", "volume1d", "volume7d", "signal") with sortOrder to control ranking — default is tvl desc. Use topPerVenue to limit to top N pools per DEX by APY. Supports filtering by protocol/DEX, tokens, pool type, stablecoin status, and free-text search, with pagination. Required upstream step before zap_into_lp_position. IMPORTANT: The response contains two ID fields — poolId (string) must be passed AS-IS to zap_into_lp_position and zap_out_of_lp_position (do NOT construct or modify it), and id (number) is used only for analyze_pool. It is categorised as a Read tool in the Swapwizard MCP Server, which means it retrieves data without modifying state.

What parameters does search_liquidity_pools accept? +

search_liquidity_pools accepts 12 parameters: page, search, signal, sortBy, tokens, chainId, dexKind, project, hookless, pageSize, poolType, trending. Required: chainId. The full parameter table on this page comes from the server's own tool schema.

How do I enforce a policy on search_liquidity_pools? +

Register the Swapwizard MCP server in PolicyLayer and add a rule for search_liquidity_pools: allow, deny, rate-limit, or require approval. Point your MCP client at the PolicyLayer proxy URL and the rule is enforced on every call, before it reaches Swapwizard. Nothing to install.

What risk level is search_liquidity_pools? +

search_liquidity_pools is a Read tool with low risk. Read-only tools are generally safe to allow by default.

Can I rate-limit search_liquidity_pools? +

Yes. Add a rate_limit block to the search_liquidity_pools rule in your PolicyLayer policy. For example, setting max: 10 and window: 60 limits the tool to 10 calls per minute. Rate limits are tracked per agent session and reset automatically.

How do I block search_liquidity_pools completely? +

Set action: deny in the PolicyLayer policy for search_liquidity_pools. The AI agent will receive a policy violation error and cannot call the tool. You can also include a reason field to explain why the tool is blocked.

What MCP server provides search_liquidity_pools? +

search_liquidity_pools is provided by the Swapwizard MCP server (@swapwizard/mcp-server). PolicyLayer sits as a proxy in front of this server to enforce policies before tool calls reach the server.

More on Swapwizard, and thousands of servers like it.

// THE MCP REGISTRY

PolicyLayer tracks 44,603 MCP servers and 515,000+ tools.

Every server has a live record: who publishes it, whether it answers without auth, its risk grade, every tool classified, the recommended policy. This page is one line of Swapwizard's. Pull the full record:

Teams ship this data inside their own products. See what a licence covers →

// GET IN TOUCH

Have a question or want to learn more? Send us a message.

Message sent.

We'll get back to you soon.