Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Tracking the latest trending tokens on CoinGecko.

README.md

Crypto Trending MCP Server

An MCP server that tracks and monitors the latest trending tokens on CoinGecko, providing real-time insights into the most popular cryptocurrencies.

<a href="https://glama.ai/mcp/servers/@kukapay/crypto-trending-mcp"> <img width="380" height="200" src="https://glama.ai/mcp/servers/@kukapay/crypto-trending-mcp/badge" alt="crypto-trending-mcp MCP server" /> </a>

![Discord](https://discord.gg/aRnuu2eJ) !GitHub License !Python Version !Status

Features

  • Tool: get_trending_md_doc

Returns a Markdown document of the full CoinGecko trending page, including a table of trending cryptocurrencies with columns: Rank, Name, Symbol, Price, 1h Change, 24h Change, 7d Change, 24h Volume, Market Cap.

  • Prompt: parse_trending_md_doc

Guides MCP clients to extract the trending coins table from the Markdown document and parse it with an LLM, supporting analyses like identifying coins with positive price changes or ranking by market cap.

  • Seamless Integration

Designed for use with Claude Desktop, allowing natural language queries to analyze trending crypto data via MCP tools and prompts.

  • Lightweight & Extensible

Built with minimal dependencies and a simple architecture, making it easy to extend or deploy.

Installation

Prerequisites

  • Python 3.10+
  • Node.js (for Playwright browser dependencies)
  • Claude Desktop (optional, for testing with MCP client)

Steps

  1. Clone the Repository:
   git clone https://github.com/kukapay/crypto-trending-mcp.git
   cd crypto-trending-mcp
  1. Install Dependencies with uv:
   uv sync
   playwright install

Usage

Integrating with Claude Desktop

  1. Configure Claude Desktop:
  • Edit the configuration file:
  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Add the server configuration:
     {
       "mcpServers": {
         "crypto-trending": {
           "command": "uv",
           "args": [
             "--directory",
             "/absolute/path/to/crypto-trending-mcp",
             "run",
             "main.py"
           ]
         }
       }
     }

Replace /absolute/path/to/crypto-trending-mcp with the absolute path to your main.py.

  1. Restart Claude Desktop:
  • Close and reopen Claude Desktop.
  • Look for the hammer icon (🔨) in the input box, indicating MCP tools are available.
  1. Interact with the Server:
  • Ask natural language questions like:
  • "What are the trending cryptocurrencies with positive 24h price changes?"
  • "Show the top 3 trending coins by market cap."
  • Claude will use the get_trending_md_doc tool and parse_trending_md_doc prompt to fetch and analyze the data.

Example Output

The get_trending_md_doc tool returns a Markdown document like:

# Trending Crypto

...

| Rank | Name        | Symbol | Price      | 1h Change | 24h Change | 7d Change | 24h Volume      | Market Cap         |
|------|-------------|--------|------------|-----------|------------|-----------|-----------------|-------------------|
| 1    | Bitcoin     | BTC    | $67,890.12 | +0.45%    | +2.34%     | +10.12%   | $45,123,456,789 | $1,345,678,901,234 |
| 2    | Ethereum    | ETH    | $2,456.78  | -0.12%    | -1.12%     | +5.67%    | $20,987,654,321 | $295,123,456,789   |
| 3    | Solana      | SOL    | $167.45    | +0.89%    | +5.67%     | +15.34%   | $3,456,789,123  | $78,901,234,567    |

...

*Data from CoinGecko*

The parse_trending_md_doc prompt guides the LLM to extract the table and produce structured output, such as:

[
  {
    "rank": 1,
    "name": "Bitcoin",
    "symbol": "BTC",
    "price": "$67,890.12",
    "change_1h": "+0.45%",
    "change_24h": "+2.34%",
    "change_7d": "+10.12%",
    "volume_24h": "$45,123,456,789",
    "market_cap": "$1,345,678,901,234"
  },
  ...
]

License

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

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Finance & Payments servers.