An MCP server that provides real-time trending tokens from DexScreener for BSC and Solana chains. - Tool: gettrendingpairs — fetch top trending pairs - Supports chain parameter: bsc (default) or solana - Returns both Markdown-formatted table (nice display in chat) and structured JSON array - Prompt: analyzetrendingtoken — ready-to-use analysis template for any token 1. Clone the Repository: 2. Ins
Add this skill
npx mdskills install kukapay/dexscreener-trending-mcpProvides real-time crypto trending data from DexScreener with clear tool interface and examples
1# DexScreener Trending MCP23An MCP server that provides real-time trending tokens from **DexScreener** for **BSC** and **Solana** chains.45[](https://opensource.org/licenses/MIT)6[](https://nodejs.org/)78910## Features1112- **Tool**: `get_trending_pairs` — fetch top trending pairs13 - Supports `chain` parameter: `bsc` (default) or `solana`14 - Returns both **Markdown-formatted table** (nice display in chat) and **structured JSON array**15- **Prompt**: `analyze_trending_token` — ready-to-use analysis template for any token1617## Installation18191. **Clone the Repository**:20 ```bash21 git clone https://github.com/kukapay/dexscreener-trending-mcp.git22 cd dexscreener-trending-mcp23 ```24252. **Install Dependencies**:26 ```bash27 npm install28 ```293. **Configure MCP Client**:30 To use this server with an MCP client like Claude Desktop, add the following to your config file (or equivalent):31 ```json32 {33 "mcpServers": {34 "DexScreener Trending": {35 "command": "node",36 "args": ["/path/to/dexscreener-trending-mcp/index.js"]37 }38 }39 }40 ```41 Replace `/path/to/dexscreener-trending-mcp` with your actual installation path.4243## Usage4445The server exposes one powerful **tool** and one **prompt template**.4647### 1. Tool: get_trending_pairs4849**Purpose**: Fetch the current top trending token pairs on DexScreener.5051**Supported chains**: `bsc` (default), `solana`5253**Example prompts**:5455- “Show me the top 10 trending tokens on BSC right now”56- “What are the hottest Solana pairs today? Limit to 5”57- “List top 8 trending pairs on solana with high volume”5859**Typical output** (rendered as Markdown table in most clients):6061```markdown62### Top 10 Trending Pairs on BSC6364| Rank | Name | Symbol | Price (USD) | 24h Volume | 24h Change | Liquidity | Market Cap | Boosts |65|------|---------------|--------|-------------|----------------|------------|----------------|----------------|--------|66| 1 | TokenA | TA | $0.01234 | $18,765,432 | +145.2% | $2,345,678 | $12,345,678 | 85 |67| 2 | MoonShot | MOON | $0.000456 | $12,980,123 | +89.7% | $1,890,456 | $8,765,432 | 62 |68| 3 | CatInu | CAT | $0.0000789 | $9,876,543 | +210.5% | $1,234,567 | $6,543,210 | 120 |69| ... | ... | ... | ... | ... | ... | ... | ... | ... |70```7172(Plus a structured JSON array in the background for further processing)7374## License7576MIT License. See the [LICENSE](LICENSE) file for details.77
Full transparency — inspect the skill content before installing.