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

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)

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