pumpfun-wallets-mcp
Provides access to wallet analysis data from the kukapay/pumpfun-wallets-mcp GitHub repository, which contains tools for analyzing trading activity and profitability on Pump.fun and PumpSwap platforms.
Utilizes Python 3.10+ as the implementation language for the MCP server's wallet analysis functionality, with the server being installable and runnable through Python package management tools.
Incorporates Shields.io badges in the README to display project information such as license, Python version requirements, and project status.
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., "@pumpfun-wallets-mcpshow me the top 10 most profitable wallets from the last 30 days"
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.
Pumpfun Wallets MCP
An MCP server that analyzes wallets’ trading activity and profitability on Pump.fun and PumpSwap.
Features
Total Wallets: Retrieve the total number of wallets on Pumpfun and Pumpswap.
Top Profitable Wallets: Fetch the top wallets by realized profit over the last 30 days, with rank, wallet address, profit, and last transaction timestamp.
Top Trading Wallets: Get the top wallets by all-time trading volume, including trade count and total volume in USD.
Wallet Distribution: View the distribution of wallets by trading volume tiers, excluding bots, for insights into trading activity.
Tabulated Output: Returns data in a clean, tabulated string format for easy readability.
Related MCP server: Memecoin Observatory MCP
Prerequisites
Python 3.10+
A valid Dune Analytics API key
Installation
Clone the Repository:
git clone https://github.com/kukapay/pumpfun-wallets-mcp.git cd pumpfun-wallets-mcpInstall Dependencies:
uv syncInstalling to Claude Desktop:
Install the server as a Claude Desktop application:
uv run mcp install main.py --name "pumpfun-wallets-mcp"Configuration file as a reference:
{ "mcpServers": { "Pumpfun Wallets": { "command": "uv", "args": [ "--directory", "/path/to/pumpfun-wallets-mcp", "run", "main.py" ], "env": { "DUNE_API_KEY": "dune_api_key"} } } }Replace
/path/to/pumpfun-wallets-mcpwith your actual installation path, anddune_api_keywith your API key from Dune Analytics.
Tools
The server provides the following tools, accessible via the MCP interface or API:
get_total_wallets()
Description: Retrieves the total number of wallets on Pumpfun and Pumpswap.
Returns: Integer (total wallet count, or 0 on error).
Example:
How many wallets are there on Pumpfun and Pumpswap?get_alpha_wallets(limit: int = 100)
Description: Fetches the top profitable wallets for the last 30 days, including rank, wallet address, realized profit (USD), and last transaction timestamp.
Parameters:
limit(optional, default: 100) - Maximum number of wallets to return.Returns: Tabulated string with wallet data, or empty string on error.
Example:
Show me the top 5 most profitable wallets on Pumpfun and Pumpswap for the last 30 days.Output:
Rank Wallet Realized Profit Last Tx
---- ------------------------------------------ --------------- --------------------
1 0x123...abc $50000 2025-06-10 12:34:56
2 0x456...def $45000 2025-06-09 09:12:34
...get_trading_wallets(limit: int = 10)
Description: Retrieves the top wallets by all-time trading volume, including rank, wallet address, trade count, and total volume (USD).
Parameters:
limit(optional, default: 10) - Maximum number of wallets to return.Returns: Tabulated string with wallet data, or empty string on error.
Example:
Who are the top 3 wallets with the highest trading volume on Pumpfun and Pumpswap?Output:
Rank Wallet Trade Count Total Volume
---- ------------------------------------------ ----------- ------------
1 0x789...ghi 1500 $1000000
2 0xabc...jkl 1200 $950000
3 0xdef...mno 1000 $800000get_trading_wallet_distribution()
Description: Fetches the distribution of wallets by trading volume tiers (excluding bots).
Returns: Tabulated string with volume tiers and wallet counts, or empty string on error.
Example:
What is the distribution of wallets by trading volume on Pumpfun and Pumpswap, excluding bots?Output:
Volume Tier Number of Wallets
--------------- -----------------
$0 - $1000 5000
$1000 - $10000 2000
$10000+ 500License
This project is licensed under the MIT License. See the LICENSE file for details.
Available Tools
4 toolsget_alpha_walletsA
Retrieve the top profitable wallets on Pumpfun and Pumpswap for the last 30 days.
This function queries Dune Analytics (query ID: 4032586) to fetch a ranked list of wallets
based on their realized profit over the past 30 days, formatted as a tabulated string.
Args:
limit (int, optional): Maximum number of wallets to return. Defaults to 100.
Returns:
str: A tabulated string containing the rank, wallet address, realized profit (in USD),
and last transaction timestamp for each wallet, or an empty string if the query fails.
Raises:
Exception: If the API request or data retrieval encounters an error.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It effectively describes the tool's behavior: it queries Dune Analytics with a specific query ID, returns a tabulated string format, handles failures by returning an empty string, and can raise exceptions on errors. This covers key operational aspects without contradictions.
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 efficiently structured with a clear purpose statement followed by specific implementation details, parameter documentation, return value explanation, and error handling. Every sentence adds value without redundancy, and information is appropriately front-loaded.
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?
For a single-parameter tool with no annotations and no output schema, the description provides comprehensive context: purpose, data source, query specifics, return format, failure behavior, and error handling. The only minor gap is that it doesn't explicitly mention the tool is read-only (though this is implied by 'retrieve'), but overall it's highly complete.
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 schema description coverage is 0%, so the description must fully compensate. It provides excellent parameter semantics: clearly explains the 'limit' parameter's purpose, optional nature, default value, and effect. This adds substantial meaning beyond what the bare schema provides.
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 clearly states the specific action ('retrieve'), target resources ('top profitable wallets on Pumpfun and Pumpswap'), and timeframe ('last 30 days'). It distinguishes this from sibling tools like 'get_total_wallets' or 'get_trading_wallets' by focusing on profitability ranking rather than counts or distribution.
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 clear context about when to use this tool (to get ranked profitable wallets over 30 days), but doesn't explicitly state when NOT to use it or name specific alternatives among the sibling tools. The context is well-defined but lacks explicit exclusions or comparative guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_total_walletsA
Retrieve the total number of wallets on Pumpfun and Pumpswap platforms.
This function queries Dune Analytics (query ID: 5239155) to fetch the total wallet count.
Returns:
int: The total number of wallets, or 0 if the query fails.
Raises:
Exception: If the API request or data retrieval encounters an error.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden and does well by disclosing key behavioral traits: it describes the data source (Dune Analytics query), failure behavior (returns 0 if query fails), and error handling (raises Exception on API/data retrieval errors). It doesn't mention rate limits, caching, or authentication needs, but covers core operational aspects adequately.
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 perfectly structured and concise: first sentence states purpose, second explains implementation, followed by clear 'Returns' and 'Raises' sections. Every sentence adds value with zero waste, and information is front-loaded appropriately for a zero-parameter tool.
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 (0 parameters, no output schema, no annotations), the description is nearly complete: it explains what it does, how it works, what it returns, and error behavior. The only minor gap is lack of sibling differentiation, but for a straightforward query tool, this provides sufficient context for an agent to use it correctly.
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 tool has 0 parameters with 100% schema description coverage, so the baseline is 4. The description correctly indicates no parameters are needed ('This function queries...'), adding no unnecessary parameter information while matching the schema's empty state.
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 clearly states the specific action ('Retrieve'), resource ('total number of wallets'), and scope ('on Pumpfun and Pumpswap platforms'), distinguishing it from sibling tools like get_alpha_wallets or get_trading_wallets which focus on different wallet subsets. It provides a complete purpose statement without being vague or tautological.
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 its siblings (get_alpha_wallets, get_trading_wallet_distribution, get_trading_wallets). It mentions the data source (Dune Analytics query ID: 5239155) but doesn't specify use cases, prerequisites, or alternatives, leaving the agent with no contextual decision-making help.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_trading_wallet_distributionA
Retrieve the distribution of wallets by trading volume on Pumpfun and Pumpswap, excluding bots.
This function queries Dune Analytics (query ID: 5239138) to fetch the number of wallets
grouped by trading volume tiers, formatted as a tabulated string.
Returns:
str: A tabulated string containing the volume tier and number of wallets in each tier,
or an empty string if the query fails.
Raises:
Exception: If the API request or data retrieval encounters an error.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden and does well by disclosing key behavioral traits: data source (Dune Analytics), query failure behavior (returns empty string), error handling (raises Exception), and output format (tabulated string). It doesn't mention rate limits or authentication needs, but covers most essential operational aspects.
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 well-structured with clear sections (purpose, data source, returns, raises) and efficiently conveys necessary information in 5 sentences. It could be slightly more concise by combining some sentences, but overall wastes no space.
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?
For a parameterless tool with no annotations and no output schema, the description provides comprehensive context: purpose, data source, exclusion criteria, return format, and error behavior. The only minor gap is not explicitly stating the volume tier ranges, but given the query ID reference, this is reasonable.
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?
With 0 parameters and 100% schema coverage, the baseline is 4. The description appropriately explains this is a parameterless function that retrieves pre-defined data, which aligns perfectly with the empty input schema.
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 clearly states the specific action ('Retrieve the distribution of wallets'), resource ('wallets by trading volume on Pumpfun and Pumpswap'), and scope ('excluding bots'). It distinguishes from sibling tools like 'get_total_wallets' by specifying trading volume distribution rather than total counts.
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 implies usage context through 'excluding bots' and mentions data source (Dune Analytics query ID: 5239138), but doesn't explicitly state when to use this tool versus alternatives like 'get_trading_wallets' or provide clear exclusions. The guidance is contextual but not explicit about alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_trading_walletsA
Retrieve the top wallets by all-time trading volume on Pumpfun and Pumpswap.
This function queries Dune Analytics (query ID: 5232018) to fetch a ranked list of wallets
based on their total trading volume, formatted as a tabulated string.
Args:
limit (int, optional): Maximum number of wallets to return. Defaults to 10.
Returns:
str: A tabulated string containing the rank, wallet address, trade count, and total
trading volume (in USD) for each wallet, or an empty string if the query fails.
Raises:
Exception: If the API request or data retrieval encounters an error.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden and does well by disclosing key behaviors: it queries Dune Analytics (query ID specified), returns a tabulated string, handles failures with an empty string, and raises exceptions on errors. It covers data source, output format, and error handling, though it could mention rate limits or permissions.
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 well-structured and front-loaded with the core purpose, followed by details on args, returns, and raises. Every sentence adds value without redundancy, making it efficient and easy to parse.
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 moderate complexity (1 parameter, no output schema, no annotations), the description is largely complete: it explains purpose, parameters, return format, and error behavior. It could be slightly enhanced by mentioning data freshness or query limitations, but it covers essential aspects adequately.
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 description adds significant meaning beyond the input schema, which has 0% coverage. It explains the 'limit' parameter's purpose (maximum number of wallets), default value (10), and effect on the output, compensating fully for the schema's lack of descriptions.
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 clearly states the specific action ('Retrieve'), resource ('top wallets by all-time trading volume'), and scope ('on Pumpfun and Pumpswap'), distinguishing it from sibling tools like get_alpha_wallets or get_total_wallets by focusing on trading volume ranking.
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 implies usage for fetching ranked trading volume data but does not explicitly state when to use this tool versus alternatives like get_trading_wallet_distribution or other siblings. It provides context (ranking by volume) but lacks explicit guidance on exclusions or comparisons.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
4 tool updates
v1.0.0- First observed
get_alpha_wallets - First observed
get_total_wallets - First observed
get_trading_wallet_distribution - First observed
get_trading_wallets
TDQS
The tools have mostly distinct purposes: get_alpha_wallets focuses on profitability, get_trading_wallets on trading volume, get_trading_wallet_distribution on volume tiers, and get_total_wallets on overall count. However, get_alpha_wallets and get_trading_wallets could be slightly confused as both retrieve ranked wallet lists, though they differ in ranking criteria (profit vs. volume).
All tool names follow a consistent verb_noun pattern with snake_case: get_alpha_wallets, get_total_wallets, get_trading_wallet_distribution, and get_trading_wallets. The naming is predictable and clear, using 'get' as the verb throughout.
With 4 tools, the count is reasonable for a server focused on wallet analytics for Pumpfun and Pumpswap. It covers key aspects like top wallets, totals, and distributions, though it might benefit from additional tools for more granular data or filtering options.
The tool set covers retrieval of wallet data (top profitable, top trading, distribution, total count) but lacks operations for deeper analysis, updates, or management. For a wallet analytics domain, it provides read-only access without tools for filtering, sorting beyond limits, or interacting with specific wallets, which could limit agent workflows.
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
Crypto market intelligence, token rug-checks, and wallet verification in one MCP server.
Unlock the power of real-time cryptocurrency data with our Crypto Price Insights MCP server.
Solana MCP for wallets, trades, markets, PnL, transfers, onchain data, signable swaps and API tools.
Memecoin Intelligence MCP — 9 tools: rug check, momentum, whale watch, 80+ chains.
Related MCP Servers
- AlicenseNot gradedqualityFmaintenanceAn MCP server that enables AI agents to interact with PumpSwap for real-time token swaps and automated on-chain trading.7MIT
- FlicenseNot gradedqualityDmaintenanceA Solana MCP server for analyzing memecoins, tracking trends, and providing AI-powered insights using cultural analysis and on-chain data.29-
- AlicenseAqualityBmaintenanceReal-time crypto whale intelligence MCP server with 55 tools across 14 blockchains. Free, no auth required.561MIT
- FlicenseNot gradedqualityCmaintenanceMCP server that gives deployer reputation, insider detection, and token buy-risk verdicts for Robinhood Chain memecoins, with paid tools settling via x402.-
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/kukapay/pumpfun-wallets-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server