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
TableJSON 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) |
Implementation Reference
- index.ts:84-92 (handler)The handler case for the 'get_featured_coins' tool within the handleToolCall function. It constructs the API URL for featured coins and fetches the data using fetchPumpFunData, returning the JSON stringified response.case "get_featured_coins": url = PUMP_FUN_API_URL+'/coins/for-you'; return { content: [{ type: "text", text: JSON.stringify((await fetchPumpFunData(url, args))) }], isError: false, };
- index.ts:18-25 (schema)The input schema defining the parameters for the get_featured_coins tool: offset, limit, and includeNsfw.inputSchema: { type: "object", properties: { offset: { type: "number", description: "The offset to start from (default: 0)", default: 0 }, limit: { type: "number", description: "The number of coins to return (default: 24)", default: 24 }, includeNsfw: { type: "boolean", description: "Include NSFW coins (default: true)", default: true }, } },
- index.ts:15-26 (registration)Registration of the 'get_featured_coins' tool in the TOOLS array used by the MCP server to list available tools.{ name: "get_featured_coins", description: "Get a list of featured coins", inputSchema: { type: "object", properties: { offset: { type: "number", description: "The offset to start from (default: 0)", default: 0 }, limit: { type: "number", description: "The number of coins to return (default: 24)", default: 24 }, includeNsfw: { type: "boolean", description: "Include NSFW coins (default: true)", default: true }, } }, },
- index.ts:148-150 (registration)MCP server request handler for listing tools, which returns the TOOLS array containing get_featured_coins.server.setRequestHandler(ListToolsRequestSchema, async () => ({ tools: TOOLS, }));
- index.ts:56-74 (helper)Helper function used by the get_featured_coins handler to make authenticated API requests to pump.fun using axios.async function fetchPumpFunData(url: string, params: any) { const headers = { 'accept': '*/*', 'accept-language': 'en-US,en;q=0.9', 'content-type': 'application/json', 'origin': 'https://pump.fun', 'priority': 'u=1, i', 'referer': 'https://pump.fun/', 'sec-ch-ua': '"Chromium";v="134", "Not:A-Brand";v="24", "Google Chrome";v="134"', 'sec-ch-ua-mobile': '?0', 'sec-ch-ua-platform': '"macOS"', 'user-agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36' }; const response = await axios.get(url, { params, headers }); if (response.status !== 200 || !response.data) { throw new Error(`Failed to fetch data: ${response.status}`); } return response.data; }