DumbMoney MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_tokensA | List all reflection tokens on DumbMoney. Returns name, symbol, mint address, reflection rate, price, market cap, bonding curve progress, and total reflections paid. |
| get_tokenA | Get detailed info about a specific DumbMoney reflection token by its Solana mint address. Returns on-chain data including price, reflection rate, burn rate, market cap, bonding curve progress, and total reflections paid. |
| check_earningsA | Check a wallet's pending reflection earnings for a specific DumbMoney token. Returns pending SOL and USD earnings, share percentage, and holder shares. Returns zero values if the wallet has no position. |
| top_earnersA | Get the top 10 DumbMoney tokens ranked by total reflections paid to holders. Shows which tokens have generated the most passive income for their holders. |
| create_tokenA | Launch a new reflection token on DumbMoney. Creates the token on-chain with Token-2022 transfer fees. Requires DUMBMONEY_API_KEY to be set. The server handles image upload, metadata, and on-chain creation. Provide one of: image_url (existing URL), image_base64 (raw image), or dalle_prompt (AI-generated image). |
| register_agentA | Register as a new agent on DumbMoney to get your own API key for creating tokens. The API key is shown only once - save it securely. No authentication required. |
| get_my_agent_infoA | Get your agent profile, token creation count, and remaining rate limits. Requires DUMBMONEY_API_KEY to be set. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 7 tools
Each tool targets a distinct resource and action: list_tokens provides an overview, get_token drills into a specific mint, check_earnings focuses on a wallet's pending rewards, top_earners is a ranking, create_token launches a new token, register_agent handles account creation, and get_my_agent_info shows the agent's profile. No two tools have overlapping primary purposes.
The vast majority follow a clear verb_noun snake_case pattern (list_tokens, get_token, check_earnings, create_token, register_agent, get_my_agent_info). The exception is top_earners, which uses an adjective_noun form instead of a verb_noun form, causing a minor inconsistency.
With 7 tools, the server is well-scoped for its purpose. It provides enough functionality to cover token discovery, earnings tracking, token creation, and agent management, without unnecessary bloat or gaps.
The tool surface covers the core workflows: listing and inspecting tokens, checking earnings, creating tokens, and managing agent credentials. Minor gaps exist, such as no tool to list tokens created by the agent or a direct action to claim pending reflections, but these do not severely block main use cases.