Skip to main content
Glama

Server Quality Checklist

67%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v1.0.0

  • Disambiguation5/5

    Each tool has a clearly distinct purpose: detect_dex identifies trading platforms for tokens, get_sol_price provides SOL/USD pricing, get_token_info retrieves metadata for specific tokens, and scan_wallet finds reclaimable SOL in wallets. There is no overlap or ambiguity in their functions.

    Naming Consistency4/5

    Three tools follow a consistent verb_noun pattern (detect_dex, get_sol_price, get_token_info), while scan_wallet uses a verb_noun format but deviates slightly with 'scan' instead of 'get' or 'detect'. This minor inconsistency does not hinder readability.

    Tool Count5/5

    With 4 tools, the server is well-scoped for its purpose of Solana token and wallet utilities. Each tool earns its place by covering distinct aspects like DEX detection, pricing, token metadata, and wallet scanning, without being overly sparse or bloated.

    Completeness4/5

    The tools cover key operations for Solana token analysis and wallet management, including detection, pricing, metadata retrieval, and recovery. A minor gap exists in lacking direct transaction or refund execution tools, but the provided set supports core workflows effectively.

  • Average 4/5 across 4 of 4 tools scored.

    See the Tool Scores section below for per-tool breakdowns.

    • No community issues in the last 6 months
    • No commit activity data available
    • No stable releases found
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI status not available
  • This repository is licensed under MIT License.

  • This repository includes a README.md file.

  • No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.

    Tip: use the "Try in Browser" feature on the server page to seed initial usage.

  • Add a glama.json file to provide metadata about your server.

  • If you are the author, simply .

    If the server belongs to an organization, first add glama.json to the root of your repository:

    {
      "$schema": "https://glama.ai/mcp/schemas/server.json",
      "maintainers": [
        "your-github-username"
      ]
    }

    Then . Browse examples.

  • Add related servers to improve discoverability.

How to sync the server with GitHub?

Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.

To manually sync the server, click the "Sync Server" button in the MCP server admin interface.

How is the quality score calculated?

The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).

Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.

Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).

Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.

Tool Scores

  • Behavior3/5

    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 discloses the tool's behavior as fetching a current price, implying it's a read-only operation with no destructive effects. However, it lacks details on data sources, rate limits, error handling, or response format, leaving gaps in behavioral context.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is a single, efficient sentence that directly states the tool's function with no unnecessary words. It is front-loaded and wastes no space, making it easy to parse quickly.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness3/5

    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 adequate but minimal. It covers the basic purpose but lacks context on usage, behavioral traits like reliability or latency, and output details, which could be helpful for an agent.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters4/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The input schema has 0 parameters with 100% coverage, so no parameter documentation is needed. The description appropriately adds no parameter details, focusing only on the tool's purpose. This meets the baseline for tools with no parameters.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description clearly states the specific action ('Get') and resource ('current SOL/USD price'), with no ambiguity. It distinguishes itself from siblings like 'detect_dex', 'get_token_info', and 'scan_wallet' by focusing solely on price retrieval for a specific cryptocurrency pair.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines2/5

    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 does not mention scenarios where it's appropriate (e.g., real-time price checks) or when other tools might be better (e.g., using 'get_token_info' for broader token data).

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior3/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    With no annotations provided, the description carries full burden. It discloses the return data (DEX name, pool address, token details, price, market cap, liquidity) and supported DEXs, which is useful behavioral context. However, it doesn't mention error handling, rate limits, authentication needs, or whether the operation is read-only/destructive.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    Two sentences with zero waste: first states purpose and return values, second lists supported DEXs. Every element adds value, and it's front-loaded with the core functionality.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness4/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    Given 1 parameter with full schema coverage, no annotations, and no output schema, the description is reasonably complete: it explains what the tool does, what it returns, and supported DEXs. However, for a tool returning financial data, it could better address accuracy, freshness, or limitations (e.g., 'and more' is vague).

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters3/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    Schema description coverage is 100%, so the schema already documents the mint parameter fully. The description adds no additional parameter semantics beyond what the schema provides (e.g., no examples or constraints on mint format beyond base58). Baseline 3 is appropriate when schema does the heavy lifting.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description clearly states the specific action ('detect which DEX/AMM a Solana token trades on') and resource ('Solana token'), distinguishing it from siblings like get_sol_price (price only), get_token_info (general token data), and scan_wallet (wallet analysis). It explicitly lists supported DEXs, making the scope unambiguous.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines4/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description implies usage context (identifying trading venues for Solana tokens) but doesn't explicitly state when to use this tool versus alternatives like get_token_info. It mentions supported DEXs, which helps scope applicability, but lacks explicit exclusions or comparisons to sibling tools.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior3/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    With no annotations provided, the description carries the full burden. It discloses the return format (name, symbol, image, USD price, DEX, market cap, liquidity) and the array limit (up to 10 mints), which are useful behavioral traits. However, it doesn't mention rate limits, authentication needs, error handling, or whether this is a read-only operation (though implied by 'Get').

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    Two sentences with zero waste. The first sentence states purpose and return values, the second specifies parameter handling. Every word contributes directly to tool understanding, and information is front-loaded appropriately.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness4/5

    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 good coverage: it explains what the tool does, what it returns, and parameter constraints. The main gap is lack of explicit behavioral context (e.g., rate limits, errors), but given the tool's apparent simplicity, this is reasonably complete.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters4/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    Schema description coverage is 100%, so the schema already documents the 'mints' parameter thoroughly. The description adds marginal value by restating the array limit ('up to 10') and clarifying it can accept 'a single mint or array', but doesn't provide additional semantic context beyond what's in the schema. Baseline is 3, but the slight reinforcement earns a 4.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description clearly states the action ('Get metadata and pricing'), the resource ('Solana tokens'), and the scope ('one or more'). It distinguishes from sibling tools like 'get_sol_price' (specific to SOL) and 'detect_dex' (different functionality). The verb+resource combination is specific and unambiguous.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines3/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description implies usage by specifying what it returns (metadata and pricing for Solana tokens), but doesn't explicitly state when to use it versus alternatives like 'get_sol_price' or 'detect_dex'. No guidance on prerequisites, error conditions, or when-not-to-use scenarios is provided.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior4/5

    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 communicates key behavioral traits: the operation is free, read-only, doesn't require private keys, and returns specific metrics (count and estimated SOL). It doesn't mention rate limits, error conditions, or performance characteristics, but provides sufficient core information for a tool with one parameter.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is perfectly concise and front-loaded. The first sentence establishes the core purpose, the second specifies the return values, and the third provides important usage context. Every sentence earns its place with zero wasted words.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness4/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    Given the tool's moderate complexity (single parameter, no output schema, no annotations), the description provides good completeness. It explains what the tool does, what it returns, and key behavioral constraints. The main gap is the lack of output schema, but the description adequately describes the return values (count and estimated SOL).

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters3/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The input schema has 100% description coverage, with the single parameter 'wallet' already documented as 'Solana wallet address (base58)' with length constraints. The description doesn't add any additional parameter semantics beyond what the schema provides, so it meets the baseline score of 3 for high schema coverage.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description clearly states the specific action ('Scan a Solana wallet'), target resource ('reclaimable SOL locked in empty token accounts'), and output ('Returns count of closeable accounts and estimated SOL recoverable'). It distinguishes itself from sibling tools by focusing on wallet scanning for reclaimable SOL rather than DEX detection, price checking, or token information retrieval.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines4/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description provides clear context for when to use this tool: to find reclaimable SOL in empty token accounts. It explicitly states 'Free, read-only — no private key needed,' which helps determine appropriate usage scenarios. However, it doesn't explicitly mention when NOT to use it or name specific alternatives among the sibling tools.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

GitHub Badge

Glama performs regular codebase and documentation scans to:

  • Confirm that the MCP server is working as expected.
  • Confirm that there are no obvious security issues.
  • Evaluate tool definition quality.

Our badge communicates server capabilities, safety, and installation instructions.

Card Badge

refundyoursol-mcp MCP server

Copy to your README.md:

Score Badge

refundyoursol-mcp MCP server

Copy to your README.md:

Latest Blog Posts

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/RefundYourSOL/refundyoursol-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server