create_instant_agent_wallet
Create a temporary wallet for trading, testing, or payment operations with 24-hour validity.
Instructions
Instantly create a temporary agent wallet for quick operations.
Args: purpose: Purpose of the wallet. Options: trading, testing, payment
Returns: Temporary wallet address with 24-hour validity.
Price: $0.50
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| purpose | No | general |
Implementation Reference
- coinrailz_mcp/__init__.py:905-920 (handler)The implementation of the MCP tool `create_instant_agent_wallet`, which registers the function with @mcp.tool() and uses `call_coinrailz_service` to interact with the backend.
@mcp.tool() async def create_instant_agent_wallet(purpose: str = "general") -> str: """ Instantly create a temporary agent wallet for quick operations. Args: purpose: Purpose of the wallet. Options: trading, testing, payment Returns: Temporary wallet address with 24-hour validity. Price: $0.50 """ payload = {"purpose": purpose} result = await call_coinrailz_service("instant-agent-wallet", payload) return json.dumps(result, indent=2)