Skip to main content
Glama

magicblock transfer

magicblock_transfer

Build an unsigned SPL token transfer (public or private) through an Ephemeral Rollup. Supports base/ephemeral source and destination, delayed settlement, split transfers, and gasless mode. Private mode defaults: minDelayMs=0, maxDelayMs=0, split=1 — override for delayed or split settlements. Then use sap_preview_transaction, sap_sign_transaction, and sap_submit_signed_transaction — or use sap_payments_finalize_transaction for 1-call preview+sign+submit (hosted mode). Builder fee applies.

SAP MCP execution guidance: Intent: local-signer write 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
toYesRecipient wallet pubkey
fromYesSender wallet pubkey
memoNoOptional memo appended to the transaction
mintYesSPL mint pubkey
splitNoPrivate only. Number of queue entries to split across (1-15, default 1)
amountYesBase-unit amount to transfer (integer, minimum 1)
legacyNoSkip lookup-table compilation, return a legacy transaction (default false)
clusterNoCluster: 'mainnet', 'devnet', or custom RPC URL
gaslessNoWhen true, uses configured sponsor as fee payer (default false)
authTokenNoBearer token from login (required for private transfers)
toBalanceYesWhere the recipient should receive funds
validatorNoOptional ER validator pubkey
maxDelayMsNoPrivate only. Latest (ms) the queued transfer may settle (<= 600000)
minDelayMsNoPrivate only. Earliest (ms) the queued transfer may settle. Default '0'
visibilityYes'public' = transparent SPL transfer, 'private' = routed through Private ER with delayed+split settlement
clientRefIdNoPrivate only. Encrypted client reference ID for payment confirmation
fromBalanceYesWhere the sender's balance is held
initIfMissingNoInitialize transfer queue if missing (default true)
initAtasIfMissingNoInitialize recipient ATA if missing (default true)
initVaultIfMissingNoInitialize vault if missing (default false). WARNING: when legacy=true, setting this to true can exceed the 1232-byte legacy transaction limit and produce TRANSACTION_TOO_LARGE errors. Prefer v0 (legacy=false) when vault init is needed.

Output Schema

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

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already set readOnlyHint=false and destructiveHint=false; the description adds valuable context: it is a paid builder ('Builder fee applies'), requires a local-signer workflow, and stresses 'value-moving results must be finalized locally when signing is required.' It also discloses private-mode defaults and gasless mode, providing nuance beyond the raw annotation flags.

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 organized into three purposeful paragraphs: main purpose and features, follow-up workflow, and SAP MCP execution guidance. The first sentence is an immediate TL;DR, and every subsequent sentence contributes distinct information without redundancy. The length is appropriate for the tool's complexity.

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?

Given the tool's complexity (20 parameters, output schema, annotations), the description covers intent, pricing, routing, signer boundary, and follow-up steps. It does not explicitly mention that authToken is required for private transfers (though the schema does) or describe the return shape (covered by output schema). Overall, it is quite complete for a large tool, with only minor gaps.

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?

With 100% schema description coverage, the baseline is 3. The description goes beyond the schema by stating default values for private mode (minDelayMs=0, maxDelayMs=0, split=1) and explaining the intended use of base/ephemeral source/destination. The schema also contains a valuable legacy/vault size warning, but the description itself adds meaningful semantics around defaults and mode behavior.

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 specific verb and resource: 'Build an unsigned SPL token transfer (public or private) through an Ephemeral Rollup.' This clearly distinguishes the tool from siblings like spl-token_transfer by emphasizing the Ephemeral Rollup and unsigned nature. It also lists key capabilities (delayed settlement, split transfers, gasless mode) that set it apart.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

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

The description provides clear context: this builds unsigned transfers and explicitly directs the subsequent workflow (sap_preview_transaction, sap_sign_transaction, sap_submit_signed_transaction, or sap_payments_finalize_transaction). It also includes SAP MCP execution guidance (estimate first, use sap_payments_call_paid_tool when needed). However, it does not explicitly name when not to use this tool versus alternatives like spl-token_transfer, so it stops short of full exclusions.

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

B3.2/5.0
Disambiguation4/5

Tools are organized by protocol prefix (e.g., adrena_, jupiter_, sap_) which helps distinguish domains. Within each protocol, tool names clearly indicate actions (e.g., openPosition, getQuote). However, with 360 tools, some cross-protocol overlaps (e.g., multiple swap tools) and many similar fetch tools in the sap_* family require careful reading of descriptions to disambiguate.

Naming Consistency4/5

Each protocol group follows a consistent naming convention (e.g., snake_case for adrena_, camelCase for 3land, sap_ prefix for SAP SDK tools). The mix of conventions across protocols is acceptable, though a uniform style would improve predictability. Minor inconsistency: hyphenated names like metaplex-nft_ vs underscores.

Tool Count2/5

360 tools is far too many for a well-scoped MCP server. This aggregates dozens of protocols and SAP-specific features, making navigation difficult. The server would benefit from being split into focused micro-servers (e.g., SAP identity, Jupiter DEX, NFT tools). The current count overwhelms the coherence of the set.

Completeness4/5

The tool set covers a vast range of Solana ecosystem activities: token operations, swaps, staking, NFT management, bridging, oracle data, identity registration, chat, escrow, subscriptions, and premium streaming. Major lifecycle operations are present, though some niche subdomains may have missing functions (e.g., detailed governance or lending management). Overall, it's comprehensive for the intended scope.