get_featured_coins
Retrieve a list of featured coins with options to set offset, limit, and NSFW inclusion. Designed for Pump.fun data analysis via the Model Context Protocol.
Instructions
Get a list of featured coins
Input Schema
Name | Required | Description | Default |
---|---|---|---|
includeNsfw | No | Include NSFW coins (default: true) | |
limit | No | The number of coins to return (default: 24) | |
offset | No | The offset to start from (default: 0) |
Input Schema (JSON Schema)
{
"properties": {
"includeNsfw": {
"default": true,
"description": "Include NSFW coins (default: true)",
"type": "boolean"
},
"limit": {
"default": 24,
"description": "The number of coins to return (default: 24)",
"type": "number"
},
"offset": {
"default": 0,
"description": "The offset to start from (default: 0)",
"type": "number"
}
},
"type": "object"
}