Skip to main content
Glama

User Information

tronsave_get_user_info
Read-onlyIdempotent

Read the current authenticated user's profile and linked TronSave internal account. Returns { caller, address, balance (SUN string), info, internalAccount }info carries referral/contact metadata and may be null; internalAccount is null when the wallet has not provisioned a TronSave internal balance yet. Requires a signature session from tronsave_login and mcp-session-id. Read-only and idempotent. Use tronsave_get_user_auto_setting for the auto-sell config or tronsave_get_user_permissions for permission flags when the full profile is unnecessary.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
infoYes
callerYesTRON base58 address of the caller
addressYesTRON base58 address
balanceYesAmount in SUN, onchain balance of the address
internalAccountYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedOutput schema / properties / internalAccount / anyOf
      Previous value: -[
      -  {
      -    "additionalProperties": false,
      -    "description": "Internal account information; null when the wallet has not provisioned a TronSave internal account yet.",
      -    "properties": {
      -      "apiKey": {
      -        "description": "Internal API key cached server-side from this account; treat as sensitive credential material.",
      -        "type": "string"
      -      },
      -      "balance": {
      -        "description": "Internal-account balance as a decimal string in SUN (BigInt-safe; TRX = SUN / 1e6).",
      -        "type": "string"
      -      },
      -      "depositAddress": {
      -        "description": "TRON base58 deposit address used for depositing TRX to the TronSave internal balance.",
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "depositAddress",
      -      "balance",
      -      "apiKey"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "type": "null"
      -  }
      -]New value: +[
      +  {
      +    "additionalProperties": false,
      +    "description": "Internal account information; null when the wallet has not provisioned a TronSave internal account yet.",
      +    "properties": {
      +      "apiKey": {
      +        "description": "Current internal API key associated with this account; treat as sensitive credential material.",
      +        "type": "string"
      +      },
      +      "balance": {
      +        "description": "Internal-account balance as a decimal string in SUN (BigInt-safe; TRX = SUN / 1e6).",
      +        "type": "string"
      +      },
      +      "depositAddress": {
      +        "description": "TRON base58 deposit address used for depositing TRX to the TronSave internal balance.",
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "depositAddress",
      +      "balance",
      +      "apiKey"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
  2. Changed3 schema fields changed
    • removedOutput schema / properties / internalAcc
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "additionalProperties": false,
      -      "description": "internal account information",
      -      "properties": {
      -        "apiKey": {
      -          "description": "Internal API key",
      -          "type": "string"
      -        },
      -        "balance": {
      -          "description": "Amount in SUN on the internal account",
      -          "type": "string"
      -        },
      -        "depositAddress": {
      -          "description": "TRON base58 deposit address, used for deposit TRX to TronSave internal account",
      -          "type": "string"
      -        }
      -      },
      -      "required": [
      -        "depositAddress",
      -        "balance",
      -        "apiKey"
      -      ],
      -      "type": "object"
      -    },
      -    {
      -      "type": "null"
      -    }
      -  ]
      -}
    • addedOutput schema / properties / internalAccount
      Added value: +{
      +  "anyOf": [
      +    {
      +      "additionalProperties": false,
      +      "description": "Internal account information; null when the wallet has not provisioned a TronSave internal account yet.",
      +      "properties": {
      +        "apiKey": {
      +          "description": "Internal API key cached server-side from this account; treat as sensitive credential material.",
      +          "type": "string"
      +        },
      +        "balance": {
      +          "description": "Internal-account balance as a decimal string in SUN (BigInt-safe; TRX = SUN / 1e6).",
      +          "type": "string"
      +        },
      +        "depositAddress": {
      +          "description": "TRON base58 deposit address used for depositing TRX to the TronSave internal balance.",
      +          "type": "string"
      +        }
      +      },
      +      "required": [
      +        "depositAddress",
      +        "balance",
      +        "apiKey"
      +      ],
      +      "type": "object"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ]
      +}
    • changedOutput schema / required
      Previous value: -[
      -  "caller",
      -  "address",
      -  "balance",
      -  "info",
      -  "internalAcc"
      -]New value: +[
      +  "caller",
      +  "address",
      +  "balance",
      +  "info",
      +  "internalAccount"
      +]
  3. Changed7 schema fields changed
    • addedOutput schema / properties / address / description
      Added value: +"TRON base58 address"
    • addedOutput schema / properties / balance / description
      Added value: +"Amount in SUN, onchain balance of the address"
    • removedOutput schema / properties / caller / anyOf
      Removed value: -[
      -  {
      -    "type": "string"
      -  },
      -  {
      -    "type": "null"
      -  }
      -]
    • addedOutput schema / properties / caller / description
      Added value: +"TRON base58 address of the caller"
    • addedOutput schema / properties / caller / type
      Added value: +"string"
    • changedOutput schema / properties / info / anyOf
      Previous value: -[
      -  {
      -    "additionalProperties": false,
      -    "description": "user information",
      -    "properties": {
      -      "contacts": {
      -        "items": {
      -          "additionalProperties": false,
      -          "properties": {
      -            "contactId": {
      -              "type": "string"
      -            },
      -            "isActive": {
      -              "type": "boolean"
      -            },
      -            "isVerify": {
      -              "type": "boolean"
      -            },
      -            "type": {
      -              "enum": [
      -                "EMAIL",
      -                "PHONE",
      -                "TELEGRAM",
      -                "WECHAT"
      -              ],
      -              "type": "string"
      -            },
      -            "username": {
      -              "type": "string"
      -            }
      -          },
      -          "required": [
      -            "type",
      -            "contactId",
      -            "isActive",
      -            "isVerify",
      -            "username"
      -          ],
      -          "type": "object"
      -        },
      -        "type": "array"
      -      },
      -      "createdBotCount": {
      -        "type": "number"
      -      },
      -      "pendingRefCode": {
      -        "anyOf": [
      -          {
      -            "type": "string"
      -          },
      -          {
      -            "type": "null"
      -          }
      -        ]
      -      },
      -      "rank": {
      -        "anyOf": [
      -          {
      -            "type": "number"
      -          },
      -          {
      -            "type": "null"
      -          }
      -        ]
      -      },
      -      "remainRefBonus": {
      -        "anyOf": [
      -          {
      -            "type": "string"
      -          },
      -          {
      -            "type": "null"
      -          }
      -        ]
      -      },
      -      "sponsor": {
      -        "anyOf": [
      -          {
      -            "type": "string"
      -          },
      -          {
      -            "type": "null"
      -          }
      -        ]
      -      },
      -      "totalPendingRef": {
      -        "anyOf": [
      -          {
      -            "type": "number"
      -          },
      -          {
      -            "type": "null"
      -          }
      -        ]
      -      },
      -      "totalRef": {
      -        "anyOf": [
      -          {
      -            "type": "number"
      -          },
      -          {
      -            "type": "null"
      -          }
      -        ]
      -      },
      -      "totalRefBonus": {
      -        "anyOf": [
      -          {
      -            "type": "string"
      -          },
      -          {
      -            "type": "null"
      -          }
      -        ]
      -      },
      -      "userRefCode": {
      -        "anyOf": [
      -          {
      -            "type": "string"
      -          },
      -          {
      -            "type": "null"
      -          }
      -        ]
      -      },
      -      "whitelistLevel": {
      -        "anyOf": [
      -          {
      -            "type": "number"
      -          },
      -          {
      -            "type": "null"
      -          }
      -        ]
      -      }
      -    },
      -    "required": [
      -      "createdBotCount",
      -      "contacts",
      -      "whitelistLevel",
      -      "userRefCode",
      -      "sponsor",
      -      "pendingRefCode",
      -      "totalRef",
      -      "totalPendingRef",
      -      "totalRefBonus",
      -      "remainRefBonus",
      -      "rank"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "type": "null"
      -  }
      -]New value: +[
      +  {
      +    "additionalProperties": false,
      +    "description": "user information",
      +    "properties": {
      +      "contacts": {
      +        "items": {
      +          "additionalProperties": false,
      +          "properties": {
      +            "contactId": {
      +              "description": "Contact id",
      +              "type": "string"
      +            },
      +            "isActive": {
      +              "description": "Whether the contact is active",
      +              "type": "boolean"
      +            },
      +            "isVerify": {
      +              "description": "Whether the contact is verified",
      +              "type": "boolean"
      +            },
      +            "type": {
      +              "enum": [
      +                "EMAIL",
      +                "PHONE",
      +                "TELEGRAM",
      +                "WECHAT"
      +              ],
      +              "type": "string"
      +            },
      +            "username": {
      +              "description": "Username",
      +              "type": "string"
      +            }
      +          },
      +          "required": [
      +            "type",
      +            "contactId",
      +            "isActive",
      +            "isVerify",
      +            "username"
      +          ],
      +          "type": "object"
      +        },
      +        "type": "array"
      +      },
      +      "createdBotCount": {
      +        "description": "Number of bots created by the user",
      +        "type": "number"
      +      },
      +      "pendingRefCode": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "description": "Pending ref code"
      +      },
      +      "rank": {
      +        "anyOf": [
      +          {
      +            "type": "number"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "description": "Rank"
      +      },
      +      "remainRefBonus": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "description": "Remain ref bonus"
      +      },
      +      "sponsor": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "description": "Sponsor"
      +      },
      +      "totalPendingRef": {
      +        "anyOf": [
      +          {
      +            "type": "number"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "description": "Total pending ref"
      +      },
      +      "totalRef": {
      +        "anyOf": [
      +          {
      +            "type": "number"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "description": "Total ref"
      +      },
      +      "totalRefBonus": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "description": "Total ref bonus"
      +      },
      +      "userRefCode": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "description": "User ref code"
      +      },
      +      "whitelistLevel": {
      +        "anyOf": [
      +          {
      +            "type": "number"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "description": "Whitelist level"
      +      }
      +    },
      +    "required": [
      +      "createdBotCount",
      +      "contacts",
      +      "whitelistLevel",
      +      "userRefCode",
      +      "sponsor",
      +      "pendingRefCode",
      +      "totalRef",
      +      "totalPendingRef",
      +      "totalRefBonus",
      +      "remainRefBonus",
      +      "rank"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
    • changedOutput schema / properties / internalAcc / anyOf
      Previous value: -[
      -  {
      -    "additionalProperties": false,
      -    "description": "internal account information",
      -    "properties": {
      -      "apiKey": {
      -        "description": "Internal API key",
      -        "type": "string"
      -      },
      -      "balance": {
      -        "description": "Amount in SUN",
      -        "type": "string"
      -      },
      -      "depositAddress": {
      -        "description": "TRON base58 deposit address, used for deposit TRX to TronSave internal account",
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "depositAddress",
      -      "balance",
      -      "apiKey"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "type": "null"
      -  }
      -]New value: +[
      +  {
      +    "additionalProperties": false,
      +    "description": "internal account information",
      +    "properties": {
      +      "apiKey": {
      +        "description": "Internal API key",
      +        "type": "string"
      +      },
      +      "balance": {
      +        "description": "Amount in SUN on the internal account",
      +        "type": "string"
      +      },
      +      "depositAddress": {
      +        "description": "TRON base58 deposit address, used for deposit TRX to TronSave internal account",
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "depositAddress",
      +      "balance",
      +      "apiKey"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
  4. Added

TDQS

A4.7/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, openWorldHint, and idempotentHint. The description adds value by detailing the return shape, including nullable fields (info, internalAccount), and confirming read-only behavior. While annotations cover safety, the description adds behavioral context without contradiction.

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 concise: three sentences including return shape, prerequisites, and sibling differentiators. It is front-loaded with purpose and return type, then adds context. Every sentence earns its place with no fluff.

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?

Given zero parameters, rich annotations, and an output schema (not shown but mentioned as present), the description fully covers purpose, return shape (including nullable fields), prerequisites, and alternative tools. It is complete for a read-only info endpoint.

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?

There are zero parameters, so the description does not need to add parameter details. The input schema is empty and coverage is 100%. The description does not mention parameters, which is appropriate. Baseline 4 for zero-param tools.

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 it reads the authenticated user's profile and internal account, specifies the returned fields, and distinguishes from sibling tools like tronsave_get_user_auto_setting and tronsave_get_user_permissions. The verb 'Read' and resource 'profile and internal account' are 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 Guidelines5/5

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

The description explicitly states prerequisites: requires signature session from tronsave_login and mcp-session-id. It also provides when-not-to-use guidance by naming alternative tools for specific purposes (auto-sell config, permission flags). This covers both when and when-not to invoke this tool.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources