Skip to main content
Glama

Submit Transaction

cardano_transaction_submit
Destructive

Submit a signed transaction file to a Cardano node to broadcast it on-chain; returns confirmation or validation error details.

Instructions

Submit a signed transaction to the blockchain via the node.

Args:

  • tx_file (string): Path to the signed transaction file

Returns: Confirmation that the transaction was submitted, or validation error details.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tx_fileYesPath to the signed transaction file

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.2/5.0
Behavior3/5

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

Annotations already declare it is a non-readonly, open-world, non-idempotent, destructive operation. The description adds that it returns confirmation or validation error details, which is useful output context, but does not disclose further behavioral traits such as required permissions or network conditions.

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?

Very concise with a front-loaded purpose statement. The Args and Returns sections are structured but slightly redundant given the schema, though not harmful.

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 full schema coverage and annotations covering the safety profile, the description provides the essential purpose, parameter, and return information. It is adequate, though it could mention prerequisites.

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 fully documents the single parameter. The description repeats the schema's description verbatim, adding no new semantic information.

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?

States a specific verb (submit) and resource (signed transaction) and scope (to the blockchain via the node). It distinguishes from sibling transaction tools by focusing on submission, but does not explicitly name alternatives.

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?

No explicit when-to-use or when-not-to-use guidance. It implies the need for a signed transaction file but doesn't state prerequisites or how it relates to siblings like cardano_transaction_build or cardano_transaction_sign.

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