Skip to main content
Glama

simulate_transaction

Find out whether your transaction will succeed before you pay for it. Simulates on mainnet and returns the decoded error (translated to plain language), logs, compute units consumed, and expected account changes. Use before submitting any unfamiliar or high-value transaction. Never sends — simulation only. $0.02 per call in USDC on Solana.

transaction_base64: base64-encoded signed or unsigned Solana transaction

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
transaction_base64Yes

TDQS

A5/5.0
Behavior5/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 clearly states the tool is non-sending ('Never sends — simulation only'), specifies the execution environment (mainnet), and details the return payload (decoded error in plain language, logs, compute units, account changes). It also discloses the cost ($0.02 per call in USDC), which is a key operational condition.

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 compact and well-structured. It front-loads the primary purpose and key safety guarantee, then lists return contents, usage timing, cost, and ends with a direct parameter definition. Every sentence adds value with no redundancy or unnecessary elaboration.

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?

Since there is no output schema, the description must explain return values, which it does thoroughly (error, logs, compute units, account changes). It also covers usage context, cost, and input format. For a single-parameter tool with no annotations, this description is fully sufficient for an agent to select and invoke the tool correctly.

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

Parameters5/5

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

The schema only labels the parameter as 'Transaction Base64' with no description. The tool description compensates fully by explaining that transaction_base64 is a 'base64-encoded signed or unsigned Solana transaction.' This provides essential format and content details beyond the schema, making the parameter's meaning clear and actionable.

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 opens with a clear statement of purpose: 'Find out whether your transaction will succeed before you pay for it.' It explicitly names the action (simulate) and the resource (a Solana transaction), and distinguishes itself from sibling tools by being the only simulation-related tool. The phrase 'Never sends — simulation only' further clarifies its role.

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 provides explicit usage guidance: 'Use before submitting any unfamiliar or high-value transaction.' It also warns 'Never sends — simulation only,' which helps the agent avoid misuse. Although no alternative tools are named, the sibling context shows this is a unique simulation capability, so no additional exclusions are needed.

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.

TDQS

A4.2/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: health checks RPC connectivity, inspect_wallet profiles a wallet, payment_info explains payment steps, priority_fee estimates fees, request_capability captures unmet demand, screen_token assesses token risk, service_info provides service details, and simulate_transaction tests transactions. No two tools overlap in function.

Naming Consistency4/5

All tool names use lowercase with underscores, but they mix verb_noun (inspect_wallet, simulate_transaction), noun_info (payment_info, service_info), and single-word (health) patterns. The inconsistency is minor and does not impede readability or selection.

Tool Count5/5

Eight tools is well within the ideal 3-15 range for a focused Solana utility server. Each tool adds unique value with no redundancy, making the set feel compact yet complete.

Completeness4/5

The set covers the core read-only Solana operations: connectivity, wallet inspection, token risk, fee estimation, and transaction simulation, plus meta tools for payment and capability requests. Minor gaps exist (e.g., no transaction status checker), but for its stated purpose as an analysis and diagnostics server, coverage is strong.

Resources