Skip to main content
Glama
tdnupe3

Coin Railz MCP Server

by tdnupe3

bridge_tokens

Get bridge quotes and routes for cross-chain token transfers between blockchains, including fees and estimated time.

Instructions

Get bridge quote and route for cross-chain token transfer.

Args: from_chain: Source blockchain to_chain: Destination blockchain token_address: Token to bridge amount: Amount to bridge recipient: Optional different recipient address

Returns: Bridge route, fees, and estimated time.

Price: $0.50

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
from_chainYes
to_chainYes
token_addressYes
amountYes
recipientNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Implementation Reference

  • The implementation of the `bridge_tokens` MCP tool, which calls the `seamless-chain-bridge` service.
    @mcp.tool()
    async def bridge_tokens(
        from_chain: str,
        to_chain: str,
        token_address: str,
        amount: str,
        recipient: str = None
    ) -> str:
        """
        Get bridge quote and route for cross-chain token transfer.
        
        Args:
            from_chain: Source blockchain
            to_chain: Destination blockchain
            token_address: Token to bridge
            amount: Amount to bridge
            recipient: Optional different recipient address
        
        Returns:
            Bridge route, fees, and estimated time.
        
        Price: $0.50
        """
        payload = {
            "fromChain": from_chain,
            "toChain": to_chain,
            "tokenAddress": token_address,
            "amount": amount
        }
        if recipient:
            payload["recipient"] = recipient
        result = await call_coinrailz_service("seamless-chain-bridge", payload)
        return json.dumps(result, indent=2)
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions the tool returns a quote and route but doesn't specify if this is a read-only operation, if it requires authentication, rate limits, or any side effects. The description is minimal and lacks critical behavioral context for a tool that could involve financial transactions.

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 description is appropriately sized and front-loaded, starting with the core purpose followed by parameter and return details. The 'Price: $0.50' line is slightly extraneous but not wasteful. Overall, it's efficient with minimal fluff.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (cross-chain transfers) and lack of annotations, the description is moderately complete but has gaps. It explains parameters and returns, and an output schema exists, so return values needn't be detailed. However, it misses behavioral aspects like safety, permissions, or error handling, which are crucial for such operations.

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?

The description lists all parameters with brief explanations, adding meaning beyond the input schema, which has 0% description coverage. It clarifies that 'recipient' is optional and different from default, and specifies the purpose of each parameter. However, it doesn't provide format details (e.g., chain identifiers, token address formats), leaving some ambiguity.

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 clearly states the tool's purpose with specific verbs ('Get bridge quote and route') and resources ('cross-chain token transfer'), distinguishing it from sibling tools that focus on analysis, trading, or other blockchain operations. It precisely defines what the tool does without restating the name.

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?

The description provides no guidance on when to use this tool versus alternatives like 'build_transaction' or 'get_batch_quote' for similar operations. It lacks context about prerequisites, such as whether the tool is for planning versus execution, or any exclusions for specific scenarios.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/tdnupe3/mcp-server-coinrailz'

If you have feedback or need assistance with the MCP directory API, please join our Discord server