Skip to main content
Glama

Get Solana Portfolio

monei_get_solana_portfolio
Read-onlyIdempotent

Get a complete Solana wallet portfolio showing SOL balance and all SPL token holdings with current USD values.

Instructions

Returns the full token portfolio for the user's Solana wallet, including SOL balance and all SPL token holdings with USD values.

Use this when the user wants a breakdown of what they hold on Solana. For a simple balance check, use monei_get_wallet instead.

Args:

  • network (string, optional): 'mainnet-beta' (default), 'devnet', or 'testnet'.

Returns: { "address": string, // Solana wallet address "nativeBalance": string, // SOL balance "nativeBalanceUsd": number, "tokens": [ { "mintAddress": string, "name": string, "symbol": string, "balance": string, "valueUsd": number, "priceUsd": number } ], "totalValueUsd": number }

Examples:

  • "What's in my Solana wallet?" -> call with default network

  • "Do I have any USDC on Solana?" -> check tokens array for USDC symbol

  • "What's my SOL balance?" -> check nativeBalance field

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
networkNoSolana network to use. Defaults to mainnet-beta.mainnet-beta

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observedv1.3.1

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare this as read-only, idempotent, non-destructive, and open-world. The description adds useful behavior context by clarifying that it returns the full portfolio structure, not just a balance, and that the agent should inspect specific fields like tokens[].symbol or nativeBalance for different user intents.

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 well-structured and front-loaded: purpose first, usage guidance second, then args, return shape, and examples. Every section adds decision-relevant value, and the examples map natural-language questions to the correct response fields.

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

Completeness5/5

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

There is no output schema, so the description compensates by providing a detailed JSON response shape covering address, native balance, token entries, and total value. Combined with the sibling distinction and clear parameter documentation, nothing essential is missing for an agent to invoke this tool correctly.

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 fully documents the single optional network parameter, including the enum values and default. The description repeats this information but adds no deeper semantics beyond what the schema already provides, so baseline 3 is appropriate.

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 uses a specific verb and resource: returns the full Solana token portfolio including SOL and SPL tokens with USD values. It also distinguishes itself from monei_get_wallet by stating its broader scope, so an agent can clearly tell which tool fits the request.

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

Usage Guidelines5/5

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

It explicitly says to use this tool when the user wants a breakdown of their Solana holdings and points to monei_get_wallet for a simple balance check. This direct when-to-use and when-not-to-use guidance is exactly what agents need to disambiguate between siblings.

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

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/Mr-Money01/mcp-server'

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