Rialto Swap (read-only)
Server Details
Read-only MCP for Rialto quotes and swap preflight on Robinhood Chain. No signing or broadcast.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- hoodly-agent/mcp-rialto
- GitHub Stars
- 0
- Server Listing
- Rialto Swap MCP
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.2/5 across 4 of 4 tools scored.
Each tool has a clearly distinct purpose: listing tokens, getting quotes, validating quotes, and building unsigned transactions. No overlapping functionality.
All tools use the 'rialto_' prefix and mostly follow a verb_noun pattern (list_tokens, get_quote, build_unsigned_tx). 'preflight' is slightly less conventional but still clear.
With 4 tools, the server is well-scoped for a read-only swap service, covering token discovery, quoting, preflight checks, and transaction building without unnecessary complexity.
The tool set covers the full workflow for a read-only swap server: token listing, quoting, validation, and unsigned transaction generation. No obvious gaps for the stated purpose.
Available Tools
4 toolsrialto_build_unsigned_txAInspect
Return the unsigned payload for a USER-signed wallet to complete: the tx object and, for Permit2 settlement, the EIP-712 typed data plus the byte offset where the wallet layer splices the 65-byte signature. This server never signs — it only shapes what a wallet needs to sign.
| Name | Required | Description | Default |
|---|---|---|---|
| quote | Yes | The full quote object returned by rialto_get_quote |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description fully discloses key behavior: the server never signs, only shapes the payload for the wallet. It also details special handling for Permit2 settlement.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences that efficiently convey the purpose, return structure, and a key behavioral note. No wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite no output schema, the description explains the return value (tx object and Permit2 details) and the tool's role. With one well-described parameter, this is complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description does not add meaning beyond the schema's parameter description, which already states the quote comes from rialto_get_quote. Schema coverage is 100%, so baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns an unsigned payload for a wallet to sign, and distinguishes it from siblings like rialto_get_quote (which gets quotes) by focusing on transaction construction.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies this tool is used after obtaining a quote (since it takes a quote object), but it does not explicitly state when to use versus alternatives or provide exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
rialto_get_quoteAInspect
Get a best-execution swap quote from Rialto. Returns human-unit amounts, the guaranteed minimum, every fee line, route stats, and blockers (issues). sellAmount is a HUMAN decimal like "0.01", never raw units. Requires RIALTO_API_KEY.
| Name | Required | Description | Default |
|---|---|---|---|
| taker | Yes | Wallet that would pay the sell token and receive the output | |
| chainId | No | ||
| gasless | No | Quote for the relayed flow (sets permit2_owner=taker). This server never submits a gasless relay itself. | |
| buyToken | Yes | Symbol or address | |
| sellToken | Yes | Symbol or address | |
| sellAmount | Yes | Human decimal amount, e.g. "0.01" | |
| swapFeeBps | No | Integrator fee in bps — requires an integrator-scoped API key | |
| slippageBps | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must fully disclose behavioral traits. It mentions returning 'human-unit amounts, the guaranteed minimum, every fee line, route stats, and blockers' and the API key requirement, but does not indicate side effects (likely none), rate limits, or idempotency. For a quote tool, this is acceptable but not comprehensive.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise, using four short sentences. It is front-loaded with the core purpose, followed by key details. There is no redundancy or unnecessary information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity (8 parameters, no output schema), the description explains return content and a critical parameter format. However, it omits how the quote connects to other tools (e.g., building a transaction), default values (chainId, gasless), and does not fully replace a missing output schema by detailing all return fields.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is high (75%), and the description adds useful context by explicitly stating that sellAmount is a 'HUMAN decimal like "0.01", never raw units'. It also overviews return fields, which compensates for any missing parameter details and enhances understanding beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Get a best-execution swap quote from Rialto', specifying the verb, resource, and purpose. It distinguishes from sibling tools like rialto_build_unsigned_tx and rialto_preflight by focusing solely on quoting.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description mentions the required API key and clarifies that sellAmount must be in human units. However, it does not explicitly state when to use this tool versus alternative tools like rialto_preflight or rialto_build_unsigned_tx, nor does it provide guidance on prerequisites beyond the API key.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
rialto_list_tokensAInspect
List every token quotable on Rialto for Robinhood Chain (symbol, address, decimals, type). Public endpoint; call this before quoting to resolve symbols and decimals.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Describes itself as a 'Public endpoint' and an idempotent list operation. While no annotations are provided, the description adequately conveys it is read-only and safe to call. Lacks explicit statement about no side effects but strongly implied.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences with no fluff. Action and key context are front-loaded. Every sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Covers purpose, output fields, chain, public access, and sequential usage. For a tool with no parameters or output schema, the description is fully complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
No parameters in schema; description doesn't need to compensate. It adds value by explaining the output fields and context, which is sufficient for a baseline 4.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states the verb 'list' and resource 'every token quotable on Rialto for Robinhood Chain', with specific output fields (symbol, address, decimals, type). Differentiates from siblings by indicating it is a prerequisite for quoting.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly says 'call this before quoting to resolve symbols and decimals', providing a clear when-to-use directive. Also notes it is a public endpoint, implying no authentication needed.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
rialto_preflightAInspect
Validate a Rialto quote (as returned by rialto_get_quote) against baseline safety checks — issues, settlement sanity, staleness, slippage ceiling, fee cap, zero-output guard. Returns ok / refusals / warnings / notes. Run before any signing step.
| Name | Required | Description | Default |
|---|---|---|---|
| quote | Yes | The full quote object returned by rialto_get_quote | |
| maxSlippageBps | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It describes the validation checks and return categories (ok, refusals, warnings, notes), but does not explicitly state it is a read-only operation, mention authentication needs, or detail failure behavior. The description is adequate but not highly detailed.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences that efficiently convey purpose, checks performed, return types, and usage advice. No redundant information, each sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema and a nested 'quote' parameter, the description could be more complete. It lists checks and return categories but lacks details on response format or prerequisites (e.g., quote freshness). The usage hint helps, but overall there is room for improvement.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 50% (only 'quote' parameter has description). The tool description mentions 'slippage ceiling' which relates to 'maxSlippageBps' but does not directly explain the parameter's role. The description adds some context but does not fully compensate for the undocumented parameter.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states the tool validates a Rialto quote, lists specific safety checks (issues, settlement sanity, staleness, slippage ceiling, fee cap, zero-output guard), and distinguishes it from siblings like rialto_get_quote (which returns quotes) and rialto_build_unsigned_tx (which would build the transaction).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly advises 'Run before any signing step,' indicating when to use it. Implicitly suggests it follows rialto_get_quote and precedes signing. Does not specify when not to use or mention alternatives, but the sibling tools are distinct and usage is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Your Connectors
Sign in to create a connector for this server.