Skip to main content
Glama

stellar_tx_manage_data

Set, modify, or delete Stellar account data entries by specifying the source account, data name, value, and network; omit the value to remove an entry.

Instructions

Set, modify, or delete account data entries

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
feeNoTransaction fee in stroops
networkYesStellar network
data_nameYesName/key of the data entry
build_onlyNoOnly build transaction, do not submit
data_valueNoValue to set (omit to delete the entry)
source_accountYesAccount that owns the data entry

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.1

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral burden. It implies mutation but says nothing about submitting a signed transaction to a live network, fee consumption, signature requirements, entry size limits, or the fact that pre-existing entries are overwritten. For a destructive network-mutating tool this is a substantial gap.

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

Conciseness4/5

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

A single front-loaded sentence with zero padding, and the three supported operations lead the sentence. It is very short but does not omit anything that would be expected at this size beyond what is already covered elsewhere.

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

Completeness2/5

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

For a six-parameter, network-mutating transaction tool with no annotations and no output schema, the description is thin: it omits the build-vs-submit distinction, signing/fee implications, and the semantics of deleting via an omitted value. An agent is left to reconstruct operation behavior from the schema alone.

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 every parameter is already documented in the schema. The description adds no parameter-level detail (it never mentions data_name, data_value, network, or build_only), so the baseline of 3 applies.

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

Purpose4/5

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

The description names a specific verb set (set, modify, delete) and a specific resource (account data entries), which is enough to distinguish it from most siblings such as stellar_tx_payment or stellar_tx_change_trust. It does not, however, explicitly differentiate itself from adjacent transaction-operation tools like stellar_tx_set_options, so it falls short of a 5.

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?

There is no when-to-use guidance, no mention of prerequisites (e.g., source_account must exist and be funded), and no reference to alternatives or to the build_only flow. The agent gets a purpose statement but must infer the triggering conditions entirely.

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

Deploy Server

Other Tools