Pump Fun Data MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Pump Fun Data MCP Servershow me the top 10 trending coins by market cap"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Pump Fun Data MCP Server
Retrieve and manage coin data from Pump.fun efficiently.
A Model Context Protocol (MCP) server that provides data retrieval capabilities for Pump.fun coins.
Note: This is an unofficial API and is not affiliated with Pump.fun.
Features
Fetch a list of featured coins
Retrieve a list of coins with sorting and ordering options
Get detailed information about a specific coin
Related MCP server: pumpfun-wallets-mcp
Installation
Installing via Smithery
To install pump-fun-data-mcp for Claude Desktop automatically via Smithery:
npx -y @smithery/cli@latest install @jun85664396/pump-fun-data-mcp --client claudeManual Installation
Add this to your MCP config:
"pump-fun-data": {
"command": "npx",
"args": ["-y", "github:jun85664396/pump-fun-data-mcp"]
}Installing via Docker
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"]
}
}
}API Methods
1. Get Featured Coins
Retrieve a list of featured coins.
Request Parameters:
Parameter | Type | Description | Default |
offset | number | The offset to start from | 0 |
limit | number | The number of coins to return | 24 |
includeNsfw | boolean | Include NSFW coins | true |
Example Request:
{
"name": "get_featured_coins",
"inputSchema": {
"offset": 0,
"limit": 24,
"includeNsfw": true
}
}2. Get Coins
Retrieve a list of coins with sorting and ordering options.
Request Parameters:
Parameter | Type | Description | Default |
offset | number | The offset to start from | 0 |
limit | number | The number of coins to return | 24 |
sort | string | The field to sort by ( |
|
includeNsfw | boolean | Include NSFW coins | true |
order | string | The order to sort by ( |
|
Example Request:
{
"name": "get_coins",
"inputSchema": {
"offset": 0,
"limit": 24,
"sort": "market_cap",
"includeNsfw": true,
"order": "DESC"
}
}3. Get Coin Info
Retrieve detailed information about a specific coin.
Request Parameters:
Parameter | Type | Description | Required |
mintId | string | The mint ID (coin address) | Yes |
Example Request:
{
"name": "get_coin_info",
"inputSchema": {
"mintId": "some-mint-id"
}
}License
This project is licensed under the MIT License.
Available Tools
3 toolsget_coin_infoC
Get information about a coin
| Name | Required | Description | Default |
|---|---|---|---|
| mintId | Yes | The mint id of the coin(coin address) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It only states the action ('Get information') without detailing traits like whether it's read-only, requires authentication, has rate limits, or what happens on errors. This is inadequate for a tool with no annotation coverage.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence ('Get information about a coin') that is front-loaded and wastes no words. However, it's overly concise to the point of under-specification, lacking necessary details for full clarity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (1 parameter, no output schema, no annotations), the description is incomplete. It doesn't explain what 'information' is returned (e.g., price, metadata), potential errors, or how it differs from siblings, leaving gaps for the agent to navigate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, with the parameter 'mintId' documented as 'The mint id of the coin (coin address)'. The description adds no additional meaning beyond this, such as format examples or constraints, so it meets the baseline for high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states the tool's purpose ('Get information about a coin') with a clear verb ('Get') and resource ('coin'), but it's vague about what specific information is retrieved. It doesn't distinguish from sibling tools like 'get_coins' (likely lists multiple coins) or 'get_featured_coins' (likely highlights specific coins), missing differentiation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention sibling tools like 'get_coins' or 'get_featured_coins', nor does it specify prerequisites or exclusions, leaving the agent to infer usage from context alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_coinsC
Get a list of coins
| Name | Required | Description | Default |
|---|---|---|---|
| offset | No | The offset to start from (default: 0) | |
| limit | No | The number of coins to return (default: 24) | |
| sort | No | The field to sort by (market_cap, last_trade_timestamp, created_timestamp, last_reply) | market_cap |
| includeNsfw | No | Include NSFW coins (default: true) | |
| order | No | The order to sort by (ASC, DESC) | DESC |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden but only states basic functionality. It doesn't disclose behavioral traits such as whether this is a read-only operation, potential rate limits, authentication needs, pagination behavior, or what happens with invalid parameters. For a list tool with 5 parameters, this leaves significant gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence with zero wasted words. It's appropriately sized for a simple list tool and front-loads the core purpose immediately.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no annotations, no output schema, and 5 parameters, the description is incomplete. It doesn't explain return values, error conditions, or behavioral context needed for proper tool invocation. For a tool with this complexity, the description should do more to guide the agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so all parameters are documented in the schema. The description adds no additional meaning about parameters beyond implying a list operation. This meets the baseline of 3 since the schema does the heavy lifting, but the description doesn't compensate or enhance understanding.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description 'Get a list of coins' clearly states the action (get) and resource (coins), but it's vague about scope and doesn't distinguish from siblings like get_coin_info (single coin) or get_featured_coins (filtered subset). It lacks specificity about what kind of list this returns.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives like get_coin_info or get_featured_coins. The description doesn't mention any context, prerequisites, or exclusions, leaving the agent to infer usage from parameter names alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_featured_coinsC
Get a list of featured coins
| Name | Required | Description | Default |
|---|---|---|---|
| offset | No | The offset to start from (default: 0) | |
| limit | No | The number of coins to return (default: 24) | |
| includeNsfw | No | Include NSFW coins (default: true) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It states the action but doesn't disclose behavioral traits such as whether this is a read-only operation, potential rate limits, authentication needs, or what the return format looks like. This is a significant gap for a tool with no annotation coverage.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence with zero waste. It's front-loaded and appropriately sized for its purpose, making it easy to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of a list-fetching tool with no annotations and no output schema, the description is incomplete. It doesn't explain what 'featured' entails, the response structure, or any behavioral context, leaving the agent with insufficient information to use the tool effectively beyond basic parameters.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema fully documents the parameters (offset, limit, includeNsfw). The description adds no additional meaning beyond what the schema provides, such as explaining why 'featured' coins might be filtered or how parameters interact. Baseline 3 is appropriate when the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description 'Get a list of featured coins' clearly states the verb ('Get') and resource ('featured coins'), but it's vague about what 'featured' means and doesn't distinguish from sibling tools like 'get_coins' or 'get_coin_info'. It provides a basic purpose but lacks specificity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives like 'get_coins' or 'get_coin_info'. The description implies usage for featured coins but doesn't specify context, exclusions, or prerequisites, leaving the agent without clear direction.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
The tools have some overlap in purpose, as both get_coins and get_featured_coins retrieve lists of coins, which could cause confusion about when to use each. However, get_coin_info is clearly distinct for retrieving detailed information about a specific coin, and the descriptions help differentiate the list tools by indicating one is for general coins and the other for featured ones.
All tool names follow a consistent verb_noun pattern with 'get_' as the prefix and snake_case throughout (e.g., get_coin_info, get_coins, get_featured_coins). There are no deviations or mixed conventions, making the naming predictable and readable.
With only 3 tools, the server feels under-scoped for a data server, as it lacks essential operations like creating, updating, or deleting coins, which are typical for managing data. This minimal set may limit agent functionality and suggests an incomplete surface for the domain.
The tool surface is severely incomplete for a data server, covering only read operations (get) with no ability to create, update, or delete coins. This creates significant gaps that will likely cause agent failures when trying to perform full data management workflows, such as adding new coins or modifying existing ones.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Solana MCP for wallets, trades, markets, PnL, transfers, onchain data, signable swaps and API tools.
168 MCP tools: token prices, whale tracking, DeFi, wallets across Base/Tron/BTC/XRP/Kaspa
Solana on-chain intelligence — token scans, wallet profiling, bundle detection, 19 MCP tools.
Pay-per-call (x402/USDC-Base) web + crypto data tools for AI agents: audit, extract, crypto, DeFi.
Related MCP Servers
- FlicenseBqualityDmaintenanceA Model Context Protocol server enabling AI assistants to create, buy, and sell tokens on the Pump.fun platform on Solana.622
- AlicenseAqualityDmaintenanceAn MCP server that analyzes wallets’ trading activity and profitability on Pump.fun and PumpSwap.41MIT
- AlicenseAqualityDmaintenanceReal-time radar for Solana memecoins, Pump.fun launches, and KOL trades.82MIT
- AlicenseAqualityAmaintenanceSolana KOL trading intelligence and deployer analytics. Query real-time trades from 946 tracked KOL wallets, convergence signals, PnL leaderboards, and elite Pump.fun deployer alerts — paid per request with USDC via x402.517872MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jun85664396/pump-fun-data-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server