CoinGecko nodes
Tools for tracking cryptocurrency markets via CoinGecko. These nodes are also served as MCP tools on the coingecko MCP server. Back to the full node reference.
Coingecko Airdrop Tracker
coingecko_airdrop_tracker · natural-language configurable · read-only · idempotent · 1 credit on Cloud
Track cryptocurrency airdrops via CoinGecko.
Credential: CoinGecko (API key)
Parameters
| Field | Type | Required | Description |
|---|---|---|---|
minReward | number | Minimum reward value required to include the airdrop. Default: 0. | |
projectName | string | ✓ | Filter airdrops by project name (case-insensitive substring match). |
statusFilter | string | ✓ | Airdrop status to filter by (e.g. ongoing, upcoming, ended). Default: ongoing. |
Output
Returns a list of records — reference fields downstream as $<node>.airdrops.
| Field | Type | Description |
|---|---|---|
airdrops | array<object> | |
minReward | number | Minimum reward filter applied to the request. |
projectFilter | string | Project filter applied to the request. |
statusFilter | string | Status filter applied to the request. |
totalCount | integer | Total number of airdrops returned after filtering. |
Coingecko Price Monitor
coingecko_price_monitor · natural-language configurable · read-only · idempotent · 1 credit on Cloud
Monitor cryptocurrency prices via CoinGecko.
Credential: CoinGecko (API key)
Parameters
| Field | Type | Required | Description |
|---|---|---|---|
alertType | string | ✓ | Type of alert: price_above, price_below, change_above, change_below, or info. Default: info. |
coinId | string | ✓ | CoinGecko coin identifier (e.g. bitcoin, ethereum). Default: bitcoin. |
currency | string | ✓ | Quote currency code (e.g. usd, eur). Default: usd. |
thresholdValue | number | Threshold value used together with the alert type. Default: 0. |
Output
Returns a list of records — reference fields downstream as $<node>.alertType.
| Field | Type | Description |
|---|---|---|
alertType | string | Alert type that was evaluated. |
change24h | number | Percentage price change in the last 24 hours. |
changeDirection | string | Direction of the price change: up, down, or neutral. |
coinId | string | CoinGecko coin identifier that was queried. |
currency | string | Quote currency that was used. |
currentPrice | number | Current price in the requested currency. |
marketCap | number | Market capitalization in the requested currency. |
shouldAlert | boolean | Whether the alert condition was triggered. |
thresholdValue | number | Threshold value that was evaluated. |
volume24h | number | Trading volume in the last 24 hours. |