get_coins
Retrieve a customizable list of coins from the Pump Fun Data MCP Server. Specify offset, limit, sorting, and filters to fetch data tailored to your needs.
Instructions
Get a list of 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) | |
order | No | The order to sort by (ASC, DESC) | DESC |
sort | No | The field to sort by (market_cap, last_trade_timestamp, created_timestamp, last_reply) | market_cap |
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"
},
"order": {
"default": "DESC",
"description": "The order to sort by (ASC, DESC)",
"type": "string"
},
"sort": {
"default": "market_cap",
"description": "The field to sort by (market_cap, last_trade_timestamp, created_timestamp, last_reply)",
"type": "string"
}
},
"required": [],
"type": "object"
}