Skip to main content
Glama
kukapay

pancakeswap-poolspy-mcp

by kukapay

PancakeSwap PoolSpy MCP サーバー

Pancake Swap で新しく作成された流動性プールを追跡し、DeFi アナリスト、トレーダー、開発者にリアルタイム データを提供する MCP サーバー。

ライセンス パイソン

特徴

  • リアルタイム プール トラッキング: 指定された時間範囲 (デフォルト: 5 分) 内に作成されたプールを取得します。

  • カスタマイズ可能なクエリ: 時間範囲 (秒単位) と返されるプールの数 (デフォルト: 100) を調整します。

  • 詳細なメトリクス: プール アドレス、トークン、作成タイムスタンプ、ブロック番号、トランザクション数、ボリューム (USD)、およびロックされた合計値 (USD) が含まれます。

Related MCP server: hyperliquid-whalealert-mcp

前提条件

  • Python 3.10+ : システムに Python がインストールされていることを確認してください。

  • The Graph API キー: PancakeSwap サブグラフにアクセスするには、 The Graphから API キーを取得します。

インストール

  1. リポジトリのクローンを作成します:

    git clone https://github.com/kukapay/pancakeswap-poolspy-mcp.git
    cd pancakeswap-poolspy-mcp
  2. 依存関係のインストール: uv を使用して必要な Python パッケージをインストールします。

    uv add mcp[cli] httpx dotenv
  3. クライアント構成

    {
      "mcpServers": {
        "PancakeSwap-PoolSpy": {
          "command": "uv",
          "args": ["--directory", "path/to/pancakeswap-poolspy-mcp", "run", "main.py"],
          "env": {
            "THEGRAPH_API_KEY": "your api key from The Graph"
          }
        }
      }
    }

使用法

サーバーの実行

ローカルでテストするには、開発モードでサーバーを実行します。

mcp dev main.py

これにより、MCP インスペクターが起動し、 get_new_pools_bscツールを操作できるようになります。

利用可能なツール

get_new_pools_bsc(time_range_seconds: int = 300, limit: int = 100)

BNB Smart Chain 上に新しく作成された PancakeSwap プールのリストを取得します。

  • パラメータ:

    • time_range_seconds (int): 新しいプールを検索する時間範囲(秒)。デフォルトは300秒(5分)です。

    • limit (int): 返されるプールの最大数。デフォルトは100プールです。

  • 戻り値: プールの詳細をリストするフォーマットされた文字列、またはクエリが失敗した場合はエラー メッセージ。

  • 出力例:

    • デフォルト (過去 5 分間、最大 100 プール):

      get_new_pools_bsc()
      Newly Created Trading Pools (Last 5 Minutes, Limit: 100):
      Pool Address: 0x1234...5678
      Tokens: WETH/USDC
      Created At: 2025-03-16 12:00:00 UTC
      Block Number: 12345678
      Transaction Count: 10
      Volume (USD): 1234.56
      Total Value Locked (USD): 5678.90
      
      Pool Address: 0x9abc...def0
      Tokens: CAKE/BNB
      Created At: 2025-03-16 12:01:00 UTC
      Block Number: 12345679
      Transaction Count: 5
      Volume (USD): 789.12
      Total Value Locked (USD): 3456.78
    • カスタム (過去 10 分間、最大 50 プール):

      get_new_pools(600, 50)
      Newly Created Trading Pools (Last 10 Minutes, Limit: 50):
      [pool details...]

プロンプトの例:

  • 「過去 1 時間以内に新しく作成された PancakeSwap プールを一覧表示します。」

  • 「過去 2 分以内に作成された PancakeSwap プールを表示します。」

ライセンス

このプロジェクトはMITライセンスの下で提供されています。詳細はLICENSEファイルをご覧ください。

Available Tools

1 tool
get_new_pools_bscA

Returns a list of trading pools created in the specified time range on Pancake Swap V3 BNB Smart Chain.

Parameters: time_range_seconds (int): The time range in seconds to look back for new pools. Default is 300 seconds (5 minutes). limit (int): The maximum number of pools to return. Default is 100 pools.

ParametersJSON Schema
NameRequiredDescriptionDefault
time_range_secondsNo
limitNo

TDQS

A3.7/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It describes the retrieval behavior but lacks details on potential side effects (e.g., rate limits, authentication needs, data freshness, or error handling). While it specifies the scope (new pools in a time range), it does not disclose behavioral traits like pagination, sorting, or what happens if no pools are found, leaving gaps for a read operation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is appropriately sized and front-loaded: the first sentence states the core purpose, followed by a structured parameter list with clear explanations and defaults. Every sentence adds value without redundancy, making it efficient and easy to scan.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity (a read operation with two parameters), no annotations, and no output schema, the description is moderately complete. It covers the purpose and parameters well but lacks details on return values (e.g., pool structure, fields) and behavioral aspects like error handling or performance. This leaves some gaps for an agent to use the tool effectively without additional context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate. It adds meaningful semantics by explaining that 'time_range_seconds' is 'the time range in seconds to look back for new pools' with a default, and 'limit' is 'the maximum number of pools to return' with a default. This clarifies the purpose and usage of both parameters beyond what the schema provides, though it could include more on constraints (e.g., min/max values).

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the specific action ('Returns a list'), resource ('trading pools'), and scope ('created in the specified time range on Pancake Swap V3 BNB Smart Chain'). It distinguishes this as a retrieval operation for newly created pools with temporal filtering, making the purpose immediately understandable without redundancy.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage by specifying the time range for new pools, but it does not provide explicit guidance on when to use this tool versus alternatives (e.g., for historical vs. real-time data, or other filtering criteria). Since no sibling tools are listed, the lack of comparative guidance is less critical, but it still lacks explicit when/when-not directives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 1 tool update
    • First observedget_new_pools_bsc

TDQS

A3.9/5.0

Scored across 1 tool

Disambiguation5/5

With only one tool, there is no possibility of confusion or overlap between tools. The tool's purpose is clearly defined and distinct.

Naming Consistency5/5

A single tool inherently has perfect naming consistency, as there are no other tools to compare against. The name follows a clear verb_noun pattern.

Tool Count2/5

One tool is too few for a server focused on monitoring PancakeSwap pools, as it lacks essential operations like retrieving pool details, tracking updates, or analyzing liquidity. This severely limits functionality.

Completeness2/5

The tool surface is severely incomplete for monitoring pools; it only fetches new pools without supporting queries for existing pools, pool metadata, or historical data, leaving significant gaps in coverage.

Maintenance

ActivityInactive
ResponsivenessUnresponsive

Related MCP Connectors

Related MCP Servers