Skip to main content
Glama

Build SAP Agent Registration Transaction

sap_build_agent_register_transaction

Hosted-safe unsigned builder for register_agent. Browser runtimes preview this transaction, the owner wallet approves and signs locally, then it goes through the Steve signed-transaction submit relay or sap_payments_finalize_transaction. Pays the 0.1 SOL SAP protocol registration fee from the signing wallet. Keypair bytes never leave the user device. SAP MCP context: Direct synapse-sap-sdk wrapper served by this MCP. Read tools return on-chain state; write tools require signer policy, configured RPC, and the active SAP profile.

SAP MCP execution guidance: Intent: hosted unsigned transaction builder. 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
nameNoPublic display name for the SAP agent.
agentIdNoOptional stable lowercase agent id (off-chain, separate from the on-chain PDA).
pricingNoOptional pricing tiers advertised by the agent.
agentUriNoOptional public HTTPS/IPFS/Arweave metadata URI.
protocolsNoProtocol tags the agent supports (sap, mcp, jupiter, sns, x402...).
descriptionNoPublic description of what the agent does.
ownerWalletNoAgent owner wallet public key (base58) — also the transaction fee payer and sole required signer.
capabilitiesNoCapability list: [{ id, description, protocolId, version }] (strings accepted as shorthand).
x402EndpointNoOptional public x402 discovery/payment endpoint.

Output Schema

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

TDQS

A4.2/5.0
Behavior5/5

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

Beyond the annotations, it discloses the 0.1 SOL fee, the unsigned nature of the transaction, that keypair bytes never leave the device, and that value-moving results must be finalized locally. These are material behaviors that readOnlyHint, idempotentHint, and destructiveHint do not capture.

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

Conciseness3/5

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

The tool-specific first sentence is strong and front-loaded, but a large portion is generic SAP MCP context and execution guidance repeated in the schema description. References such as 'the Steve signed-transaction submit relay' are unexplained, so not every sentence earns its place.

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?

With a full output schema, 100% parameter documentation, and explicit payment/signing workflow, the agent has most of what it needs to call and handle the result. However, the description references tools not present in the sibling list and does not clarify the minimum fields needed for a meaningful registration.

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%, and each parameter already carries a meaningful description, so the baseline applies. The tool description adds no per-parameter semantics beyond a general warning not to include private key material.

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 opening phrase 'Hosted-safe unsigned builder for register_agent' names a specific verb, resource, and delivery mode, so an agent can tell this builds a registration transaction rather than executing one. The title and 'Pays the 0.1 SOL SAP protocol registration fee' reinforce the exact resource and scope.

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?

It explicitly routes the workflow: estimate cost first, pay/build, then finalize locally, and mentions alternatives such as sap_payments_call_paid_tool and sap_payments_finalize_transaction. It does not explicitly contrast with sibling builders like sap_build_agent_update_transaction or direct sap_register_agent, so it stops short of a 5.

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.