- Home
- MCP servers
- Pump Fun Data
Pump Fun Data
- javascript
2
GitHub Stars
javascript
Language
4 months ago
First Indexed
3 weeks ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
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.
How to use
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.
How to install
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
Manual installation into your MCP config
"pump-fun-data": {
"command": "npx",
"args": ["-y", "github:jun85664396/pump-fun-data-mcp"]
}
Installing via Docker
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"]
}
}
What you can do with this server
-
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.
Available tools
get_featured_coins
Retrieves a list of featured coins with optional pagination and NSFW inclusion.
get_coins
Returns a list of coins with sorting and ordering options, supporting pagination and NSFW filtering.
get_coin_info
Fetches detailed information for a single coin using its mint ID.