- Home
- MCP servers
- Memecoin Radar
Memecoin Radar
- python
1
GitHub Stars
python
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"kukapay-memecoin-radar-mcp": {
"command": "uv",
"args": [
"--directory",
"/path/to/memecoin-radar-mcp",
"run",
"main.py"
],
"env": {
"DUNE_API_KEY": "YOUR_DUNE_API_KEY"
}
}
}
}Memecoin Radar MCP is a server you run locally to fetch real-time memecoin trends and influencer activity from Solana ecosystems. It consolidates multiple data sources into clean, tabular outputs that you can query through an MCP client, enabling quick insights for trading and research.
How to use
You will run the Memecoin Radar MCP as a local server and connect to it with your MCP client. The server exposes a set of tools that return up-to-date memecoin data in organized tables. Use a client to invoke individual tools by name and adjust results with the default or configured limits.
How to install
Prerequisites: make sure you have Python 3.10 or higher and a preferred package manager such as uvx installed on your system.
-
Clone the project repository.
-
Install and prepare the MCP server runtime.
-
Run the MCP installation command to configure the server for Claude Desktop.
Additional sections
Configuration snippet for the Memecoin Radar MCP server is shown below. This local runtime uses uv to execute the MCP and passes the working directory and script to start the server. An API key for Dune Analytics is required and is provided as an environment variable.
{
"mcpServers": {
"memecoin_radar": {
"command": "uv",
"args": ["--directory", "/path/to/memecoin-radar-mcp", "run", "main.py"],
"env": { "DUNE_API_KEY": "dune_api_key" }
}
}
}
Notes and usage tips
The server exposes a rich set of tools to retrieve trending tokens, Pump.fun graduates, KOL activity, Raydium and PumpSwap trends, and more. You can customize the number of results returned for each query using the limit parameter (default 100). Ensure your Dune Analytics API key is valid and kept secure.
Available tools
get_trending_tokens_by_source
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.
get_pumpfun_graduates_by_marketcap
Lists Pump.fun tokens with the highest market capitalization in the last 24 hours, ideal for spotting successful token launches.
get_pumpfun_graduates_by_trading_volume
Shows Pump.fun tokens with the highest trading volume in the last 24 hours, highlighting active trading tokens.
get_recent_pumpfun_graduates
Displays the most recently graduated Pump.fun tokens in the last 24 hours, useful for tracking new market entries.
get_recent_kol_buys
Tracks recent token purchases by memecoin Key Opinion Leaders (KOLs), providing insights into influencer activity.
get_trending_tokens_by_kol_trading_volume
Lists tokens with the highest trading volume by KOLs, highlighting influencer-driven market trends.
get_trending_tokens_on_raydium
Retrieves tokens with the highest trading volume on Raydium over a specified time span.
get_trending_tokens_on_pumpswap
Retrieves tokens with the highest trading volume on PumpSwap over a specified time span.