home / mcp / pump fun data mcp server
Pump.fun data fetch tool for Model Context Protocol
Configuration
View docs{
"mcpServers": {
"jun85664396-pump-fun-data-mcp": {
"command": "npx",
"args": [
"-y",
"github:jun85664396/pump-fun-data-mcp"
]
}
}
}You can query Pump.fun coin data efficiently through this MCP server. It provides endpoints to fetch featured coins, list coins with sorting options, and retrieve detailed information about a single coin, all accessible via MCP clients.
You connect to this MCP server from your MCP client and invoke the available tools to retrieve coin data. Start by listing featured coins to get a quick snapshot of highlighted assets. Use the coins list to explore the broader market, applying sorting and filtering to find items by market cap or last activity. When you need details on a specific coin, request its full information using its mint ID.
Prerequisites: you need Node.js and npm installed, or you can run through Docker if you prefer containerization.
# Install the MCP client integration via Smithery for Claude Desktop
npx -y @smithery/cli@latest install @jun85664396/pump-fun-data-mcp --client claude"pump-fun-data": {
"command": "npx",
"args": ["-y", "github:jun85664396/pump-fun-data-mcp"]
}Build and run the MCP server inside Docker to isolate it from your local environment.
# Build the Docker image
docker build -t mcp/pump-fun-data -f Dockerfile .
# Run with Docker
"mcpServers": {
"pump-fun-data": {
"command": "docker",
"args": ["run", "-i", "--rm", "--init", "-e", "DOCKER_CONTAINER=true", "mcp/pump-fun-data"]
}
}- Get Featured Coins: fetch a curated list of featured Pump.fun coins. Use offset and limit to paginate, and include NSFW coins if you choose.
- Get Coins: retrieve a broader list of coins with sorting and ordering options. You can sort by market cap, last trade timestamp, created timestamp, or last reply, and vary the pagination parameters.
- Get Coin Info: obtain detailed information about a specific coin by its mint ID.
Retrieves a list of featured coins with optional pagination and NSFW inclusion.
Returns a list of coins with sorting and ordering options, supporting pagination and NSFW filtering.
Fetches detailed information for a single coin using its mint ID.