Skip to main content
Glama

sap phoenix submit onboard trader

sap_phoenix_submit_onboard_trader
Destructive

Submit a user-signed Phoenix activation transaction through Phoenix's co-signing API (send-register-ixs): Phoenix validates it, adds the onboarder signature, simulates, verifies the onboarder pays nothing, and broadcasts. Pair with sap_phoenix_build_onboard_trader. After success verify with sap_phoenix_get_trader_state (state leaves "frozen", depositCollateral.immediate=true) before building deposits.

SAP MCP execution guidance: Intent: Solana value-action or trading workflow. Pricing: paid builder; estimate first, then pay/build and finalize unsigned transactions locally when returned. Routing: paid hosted call; call sap_estimate_tool_cost first, then use sap_payments_call_paid_tool if the runtime cannot handle x402 natively. Signer boundary: hosted reads/builders never receive keypair bytes; value-moving results must be finalized locally when signing is required.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
txFeePayerYesFee payer wallet public key (base58) — same as used in build_onboard_trader.
transactionYesBase64-encoded transaction assembled from build_onboard_trader instructions and signed by the fee payer.
traderAuthorityYesTrader authority wallet public key (base58) — same as used in build_onboard_trader.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
contentYesMCP content blocks returned to the caller.
isErrorNoTrue when the tool result represents an application-level error.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Added

TDQS

A4.6/5.0
Behavior5/5

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

Beyond the annotations (readOnlyHint=false, destructiveHint=true), the description discloses the full pipeline: Phoenix validates, adds the onboarder signature, simulates, verifies the onboarder pays nothing, and broadcasts. It also explains the signed-transaction boundary and the expected postcondition (state leaves 'frozen', depositCollateral.immediate=true). No contradiction with annotations.

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?

The tool-specific content is front-loaded and dense: two sentences cover what this tool does, how to pair it, and how to verify success. The trailing 'SAP MCP execution guidance' block is useful but generic and duplicated in the schema description, which prevents a perfect score.

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?

For a 3-parameter submission tool with an output schema, the description covers prerequisites, observable behavior, postconditions, routing/pricing, and signer-safety expectations. Nothing essential is missing for an agent to invoke it correctly in the intended workflow.

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?

Input schema coverage is 100%, so the schema already documents all three required parameters. The schema also ties transaction to build_onboard_trader and identifies fee payer/trader authority. The description reinforces this coupling but does not add meaning substantially beyond the structured schema.

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 states a specific verb and resource: 'Submit a user-signed Phoenix activation transaction through Phoenix's co-signing API (send-register-ixs)'. It clearly contrasts with sibling builders by referencing sap_phoenix_build_onboard_trader and sap_phoenix_get_trader_state, so an agent can distinguish submit from build/verify steps.

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 gives explicit workflow placement: pair with sap_phoenix_build_onboard_trader first, then submit, then verify with sap_phoenix_get_trader_state before building deposits. It also states the SAP paid-call routing expectations (estimate cost, use sap_estimate_tool_cost, then sap_payments_call_paid_tool if needed) and signer boundary.

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.