memecoin-radar-mcp

memecoin-radar-mcp

Real-time radar for Solana memecoins, Pump.fun launches, and KOL trades.

Category
访问服务器

Tools

get_trending_tokens_by_source

Retrieve top traded tokens on specified source platform in the last 12 hours. Args: source (str): The platform to query tokens from. Must be one of: 'Telegram', 'Web', 'Mobile'. Defaults to 'Telegram'. limit (int): Maximum number of tokens to return. Defaults to 100. Returns: str: A formatted table of trending tokens including rank, token name, mint address, trading volume, and total trades, or an error message if the query fails. Raises: ValueError: If an invalid source value is provided. httpx.HTTPStatusError: If the Dune API request fails.

get_pumpfun_graduates_by_marketcap

Retrieve Pump.fun token launches sorted by highest market capitalization in the last 24 hours. Args: limit (int): Maximum number of tokens to return. Defaults to 100. Returns: str: A formatted table of Pump.fun graduates including rank, token name, mint address, market capitalization, and trade count, or an error message if the query fails. Raises: httpx.HTTPStatusError: If the Dune API request fails.

get_pumpfun_graduates_by_trading_volume

Retrieve Pump.fun token launches sorted by highest trading volume in the last 24 hours. Args: limit (int): Maximum number of tokens to return. Defaults to 100. Returns: str: A formatted table of Pump.fun graduates including volume rank, token name, mint address, trading volume, and graduation time, or an error message if the query fails. Raises: httpx.HTTPStatusError: If the Dune API request fails.

get_recent_pumpfun_graduates

Retrieve the most recently graduated tokens from Pump.fun in the last 24 hours. Args: limit (int): Maximum number of tokens to return. Defaults to 100. Returns: str: A formatted table of recent Pump.fun graduates including graduation time, token name, mint address, market capitalization, and trade count, or an error message if the query fails. Raises: httpx.HTTPStatusError: If the Dune API request fails.

get_recent_kol_buys

Retrieve recent token purchases by memecoin Key Opinion Leaders (KOLs). Args: limit (int): Maximum number of buy transactions to return. Defaults to 100. Returns: str: A formatted table of recent KOL buys including buy time, KOL name, token name, mint address, and purchase amount, or an error message if the query fails. Raises: httpx.HTTPStatusError: If the Dune API request fails.

get_trending_tokens_by_kol_trading_volume

Retrieve tokens with the highest trading volume by memecoin KOLs. Args: limit (int): Maximum number of tokens to return. Defaults to 100. Returns: str: A formatted table of trending tokens by KOL trading volume including token name, mint address, unique KOL buys, total buys, and total volume, or an error message if the query fails. Raises: httpx.HTTPStatusError: If the Dune API request fails.

get_trending_tokens_on_raydium

Retrieve tokens with the highest trading volume on Raydium within a specified time span. Args: time_span (str): Time period for the query. Must be one of: '5h', '12h', '24h'. Defaults to '5h'. limit (int): Maximum number of tokens to return. Defaults to 100. Returns: str: A formatted table of trending tokens on Raydium including token name, mint address, and trading volume, or an error message if the query fails. Raises: ValueError: If an invalid time_span value is provided. httpx.HTTPStatusError: If the Dune API request fails.

get_trending_tokens_on_pumpswap

Retrieve tokens with the highest trading volume on PumpSwap within a specified time span. Args: time_span (str): Time period for the query. Must be one of: '5h', '12h', '24h'. Defaults to '5h'. limit (int): Maximum number of tokens to return. Defaults to 100. Returns: str: A formatted table of trending tokens on PumpSwap including mint address and trading volume, or an error message if the query fails. Raises: ValueError: If an invalid time_span value is provided. httpx.HTTPStatusError: If the Dune API request fails.

README

Memecoin Radar MCP

Real-time radar for Solana memecoins, Pump.fun launches, and KOL trades.

GitHub License Python Version Status

Features

  • Trending Tokens by Source: Retrieve top-traded tokens on platforms like Telegram, Web, or Mobile over the last 12 hours.
  • Pump.fun Graduates: Track tokens launched on Pump.fun, sorted by market capitalization or trading volume, and view recent graduates.
  • KOL Activity: Monitor recent buys and trending tokens by memecoin influencers (KOLs).
  • Raydium & PumpSwap Trends: Analyze tokens with the highest trading volume on Raydium and PumpSwap over customizable time spans (5h, 12h, 24h).
  • Customizable Limits: Configure the number of results returned for each query (default: 100).
  • Formatted Output: Results are presented in clean, tabular format using the tabulate library.

Prerequisites

  • Python 3.10 or higher
  • uv (recommended package manager)
  • A Dune Analytics API key (obtainable from Dune Analytics)

Installation

  1. Clone the Repository

    git clone https://github.com/kukapay/memecoin-radar-mcp.git
    cd memecoin-radar-mcp
    
  2. Install Dependencies

    uv sync  
    
  3. Installing to Claude Desktop:

    Install the server as a Claude Desktop application:

    uv run mcp install main.py --name "Memcoin Radar"
    

    Configuration file as a reference:

    {
       "mcpServers": {
           "Memecoin Radar": {
               "command": "uv",
               "args": [ "--directory", "/path/to/memecoin-radar-mcp", "run", "main.py" ],
               "env": { "DUNE_API_KEY": "dune_api_key"}               
           }
       }
    }
    

    Replace /path/to/memecoin-radar-mcp with your actual installation path, and dune_api_key with your API key from Dune Analytics.

Usage

Below is a detailed description of each tool, including its purpose, a natural language prompt example, and a sample table output.

get_trending_tokens_by_source

Description: Retrieves the top traded tokens on a specified platform (Telegram, Web, or Mobile) over the last 12 hours. Useful for identifying trending memecoins by platform.

Parameters:

  • source (str): Platform to query ('Telegram', 'Web', or 'Mobile'). Default: 'Telegram'.
  • limit (int): Maximum number of tokens to return. Default: 100.

Example:

  • Prompt: "Show me the top 3 trending tokens on Telegram in the last 12 hours."
  • Output:
# Top 3 Trending Tokens on Telegram - Last 12 Hours

Rank  Token    Mint Address                                Volume(12h)  Total Trades
----  -------  ------------------------------------------  -----------  ------------
1     MOON     0x1234abcd5678efgh9012ijkl3456mnop7890       $10000.00            150
2     STAR     0x5678efgh9012ijkl3456mnop7890qrst1234       $7500.00             120
3     RISE     0x9abc3456mnop7890qrst1234uvwx5678yzab       $5000.00              80

get_pumpfun_graduates_by_marketcap

Description: Lists Pump.fun tokens with the highest market capitalization in the last 24 hours, ideal for spotting successful token launches.

Parameters:

  • limit (int): Maximum number of tokens to return. Default: 100.

Example:

  • Prompt: "List the top 3 Pump.fun tokens by market cap in the last 24 hours."
  • Output:
# Top 3 Pump.fun Graduates by MarketCap - Last 24 Hours

Rank  Token    Mint Address                                MarketCap    Trade Count
----  -------  ------------------------------------------  -----------  -----------
1     PUMP     0x1234abcd5678efgh9012ijkl3456mnop7890      $500000.00           200
2     BUMP     0x5678efgh9012ijkl3456mnop7890qrst1234      $400000.00           180
3     JUMP     0x9abc3456mnop7890qrst1234uvwx5678yzab      $300000.00           150

get_pumpfun_graduates_by_trading_volume

Description: Shows Pump.fun tokens with the highest trading volume in the last 24 hours, highlighting active trading tokens.

Parameters:

  • limit (int): Maximum number of tokens to return. Default: 100.

Example:

  • Prompt: "Show the top 3 Pump.fun tokens by trading volume in the last 24 hours."
  • Output:
# Top 3 Pump.fun Graduates by Trading Volume - Last 24 Hours

Rank  Token    Mint Address                                Volume(12h)  Graduation Time
----  -------  ------------------------------------------  -----------  ---------------
1     VOLT     0x1234abcd5678efgh9012ijkl3456mnop7890      $20000.00    2025-06-14 10:00
2     SPARK    0x5678efgh9012ijkl3456mnop7890qrst1234      $15000.00    2025-06-14 09:30
3     BLAZE    0x9abc3456mnop7890qrst1234uvwx5678yzab      $10000.00    2025-06-14 08:45

get_recent_pumpfun_graduates

Description: Displays the most recently graduated Pump.fun tokens in the last 24 hours, useful for tracking new market entries.

Parameters:

  • limit (int): Maximum number of tokens to return. Default: 100.

Example:

  • Prompt: "Get the 3 most recent Pump.fun graduates."
  • Output:
# Recent 3 Pump.fun Graduates - Last 24 Hours

Graduation Time      Token    Mint Address                                Market Cap   Trade Count
-------------------  -------  ------------------------------------------  ----------   -----------
2025-06-14 12:00     NEW1     0x1234abcd5678efgh9012ijkl3456mnop7890      $250000.00          100
2025-06-14 11:30     NEW2     0x5678efgh9012ijkl3456mnop7890qrst1234      $200000.00           90
2025-06-14 11:00     NEW3     0x9abc3456mnop7890qrst1234uvwx5678yzab      $150000.00           80

get_recent_kol_buys

Description: Tracks recent token purchases by memecoin Key Opinion Leaders (KOLs), providing insights into influencer activity.

Parameters:

  • limit (int): Maximum number of buy transactions to return. Default: 100.

Example:

  • Prompt: "Show the 3 most recent KOL buys."
  • Output:
# Recent 3 Buys by Memecoin KOLs

Time                 KOL       Token    Mint Address                                Amount
-------------------  --------  -------  ------------------------------------------  --------
2025-06-14 10:00     CryptoGuru  KOL1   0x1234abcd5678efgh9012ijkl3456mnop7890      $5000.00
2025-06-14 09:45     MoonKing    KOL2   0x5678efgh9012ijkl3456mnop7890qrst1234      $3000.00
2025-06-14 09:30     TokenStar   KOL3   0x9abc3456mnop7890qrst1234uvwx5678yzab      $2000.00

get_trending_tokens_by_kol_trading_volume

Description: Lists tokens with the highest trading volume by KOLs, highlighting influencer-driven market trends.

Parameters:

  • limit (int): Maximum number of tokens to return. Default: 100.

Example:

  • Prompt: "List the top 3 tokens by KOL trading volume."
  • Output:
# Top 3 Trending Tokens by KOL Trading Volume

Token    Mint Address                                Unique KOL Buys  Total Buys  Total Volume
-------  ------------------------------------------  --------------  ----------  ------------
KOL1     0x1234abcd5678efgh9012ijkl3456mnop7890                5            50     $25000.00
KOL2     0x5678efgh9012ijkl3456mnop7890qrst1234                4            40     $18000.00
KOL3     0x9abc3456mnop7890qrst1234uvwx5678yzab                3            30     $12000.00

get_trending_tokens_on_raydium

Description: Retrieves tokens with the highest trading volume on Raydium over a specified time span (5h, 12h, or 24h).

Parameters:

  • time_span (str): Time period ('5h', '12h', or '24h'). Default: '5h'.
  • limit (int): Maximum number of tokens to return. Default: 100.

Example:

  • Prompt: "Show the top 3 trending tokens on Raydium in the last 24 hours."
  • Output:
# Top 3 Trending Tokens on Raydium - Last 24h

Token    Mint Address                                Volume
-------  ------------------------------------------  --------
RAY1     0x1234abcd5678efgh9012ijkl3456mnop7890      $30000.00
RAY2     0x5678efgh9012ijkl3456mnop7890qrst1234      $25000.00
RAY3     0x9abc3456mnop7890qrst1234uvwx5678yzab      $20000.00

get_trending_tokens_on_pumpswap

Description: Retrieves tokens with the highest trading volume on PumpSwap over a specified time span (5h, 12h, or 24h).

Parameters:

  • time_span (str): Time period ('5h', '12h', or '24h'). Default: '5h'.
  • limit (int): Maximum number of tokens to return. Default: 100.

Example:

  • Prompt: "Get the top 3 trending tokens on PumpSwap in the last 12 hours."
  • Output:
# Top 3 Trending Tokens on PumpSwap - Last 12h

Mint Address                                Trading Volume
------------------------------------------  --------------
0x1234abcd5678efgh9012ijkl3456mnop7890      $15000.00
0x5678efgh9012ijkl3456mnop7890qrst1234      $12000.00
0x9abc3456mnop7890qrst1234uvwx5678yzab      $10000.00

License

This project is licensed under the MIT License. See the LICENSE file for details.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选