drio
Open app

Uniswap PoolSpy MCP Server

Source

An MCP server that tracks newly created liquidity pools on Uniswap across nine blockchain networks.

Catalog onlyCatalog onlySTDIO

Overview

Uniswap PoolSpy MCP Server is a tool that tracks newly created liquidity pools on Uniswap across nine blockchain networks, providing real-time data for DeFi analysts, traders, and developers.

To use the server, clone the repository, set up the environment, install dependencies, configure your API key, and run the server using the provided commands.

  • Monitors Uniswap V3 pool creation across 9 blockchain networks. - Customizable time range and result limits for querying new pools. - Supports sorting by timestamp, transaction count, volume, or TVL.
  1. Tracking new liquidity pools for investment opportunities.
  2. Analyzing trading volume and transaction counts for market trends.
  3. Integrating with other DeFi tools for enhanced analytics.

Add to your AI client

Use these steps to connect Uniswap PoolSpy MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "uniswap-poolspy-mcp-kukapay": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-uniswap-poolspy-mcp-kukapay"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "uniswap-poolspy-mcp-kukapay": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-uniswap-poolspy-mcp-kukapay"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "uniswap-poolspy-mcp-kukapay": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-uniswap-poolspy-mcp-kukapay"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "uniswap-poolspy-mcp-kukapay": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-uniswap-poolspy-mcp-kukapay"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "uniswap-poolspy-mcp-kukapay": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-uniswap-poolspy-mcp-kukapay"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "uniswap-poolspy-mcp-kukapay": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-uniswap-poolspy-mcp-kukapay"
      ]
    }
  }
}

FAQ

What blockchain networks does it support?

It supports Ethereum, Base, Optimism, Arbitrum, Polygon, BNB Smart Chain (BSC), Avalanche, Celo, and Blast.

Do I need an API key?

Yes, a valid The Graph API key is required for full functionality.

Is it free to use?

Yes, the server is open-source and free to use.