Skip to main content
Glama
tdnupe3

Coin Railz MCP Server

by tdnupe3

create_agent_wallet

Create a managed wallet for AI agents to handle cryptocurrency transactions, trading, payments, and DeFi operations with secure key management.

Instructions

Create a new wallet for an AI agent with managed keys.

Args: agent_name: Name identifier for the agent agent_type: Type of agent. Options: trading, payment, defi, general

Returns: New wallet address and management details.

Price: $1.00

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
agent_nameYes
agent_typeNotrading

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Implementation Reference

  • The `create_agent_wallet` function is decorated with `@mcp.tool()` and implements the tool logic by calling the `agent-create-wallet` service via `call_coinrailz_service`.
    @mcp.tool()
    async def create_agent_wallet(agent_name: str, agent_type: str = "trading") -> str:
        """
        Create a new wallet for an AI agent with managed keys.
        
        Args:
            agent_name: Name identifier for the agent
            agent_type: Type of agent. Options: trading, payment, defi, general
        
        Returns:
            New wallet address and management details.
        
        Price: $1.00
        """
        payload = {"agentName": agent_name, "agentType": agent_type}
        result = await call_coinrailz_service("agent-create-wallet", 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 states the tool creates a wallet with 'managed keys,' implying a write operation and key management, but lacks details on permissions, security implications, rate limits, or what 'management details' entail. The price mention adds some context but is insufficient for a mutation tool.

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 well-structured and front-loaded with the core purpose, followed by parameter details, return information, and price. Each sentence serves a clear purpose, with no wasted words. However, the inclusion of 'Price: $1.00' as a separate line slightly disrupts flow, though it's still concise.

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 (creating a wallet with managed keys), no annotations, and an output schema (implied by 'Returns'), the description is moderately complete. It covers purpose and parameters but lacks behavioral details like security or operational constraints. The output schema should handle return values, but the description doesn't fully compensate for missing annotation context.

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?

The description includes an 'Args' section that lists parameters ('agent_name' and 'agent_type') and provides semantic details: 'agent_name' is a 'Name identifier for the agent,' and 'agent_type' includes options ('trading, payment, defi, general'). With 0% schema description coverage, this adds meaningful value beyond the bare schema, though it doesn't fully explain all aspects like default values or constraints.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/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: 'Create a new wallet for an AI agent with managed keys.' It specifies the verb ('Create'), resource ('wallet'), and target ('AI agent'), distinguishing it from sibling tools like 'create_instant_agent_wallet' by emphasizing 'managed keys.' However, it doesn't explicitly differentiate from that sibling beyond the name, leaving some ambiguity.

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, such as 'create_instant_agent_wallet' or other wallet-related tools. It mentions a price ('Price: $1.00'), which hints at cost considerations, but offers no explicit context, prerequisites, or exclusions for usage.

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