get_trending_coins
Retrieve trending cryptocurrency data from CoinGecko to monitor top-performing coins and stay updated on market movements directly through the Multi-MCPs server.
Instructions
Get trending coins on CoinGecko
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/apis/crypto/coingecko.ts:57-59 (handler)The main handler function that implements the get_trending_coins tool by delegating to the CoinGecko client's getTrending method.async get_trending_coins() { return client.getTrending(); },
- src/apis/crypto/coingecko.ts:36-39 (registration)Tool registration definition including name, description, and input schema (no parameters required).name: "get_trending_coins", description: "Get trending coins on CoinGecko", inputSchema: { type: "object", properties: {} }, },
- src/apis/crypto/coingecko.ts:13-15 (helper)Helper method in CoinGeckoClient that makes the API request to retrieve trending coins.getTrending() { return this.request(`/search/trending`); }
- src/tools/register.ts:32-32 (registration)Registers the CoinGecko tools (including get_trending_coins) into the main tool registry.registerCoinGecko(),