ping_coinrailz
Test connectivity to Coin Railz payment infrastructure to verify platform status, version, and available services count.
Instructions
Test connectivity to Coin Railz x402 payment infrastructure.
Args: message: Optional message to include in ping
Returns: Platform status, version, and available services count.
Price: $0.25
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| message | No | Hello from Claude |
Implementation Reference
- coinrailz_mcp/__init__.py:199-213 (handler)The ping_coinrailz tool handler, which verifies connection by calling the 'ping' service via the call_coinrailz_service helper.
@mcp.tool() async def ping_coinrailz(message: str = "Hello from Claude") -> str: """ Test connectivity to Coin Railz x402 payment infrastructure. Args: message: Optional message to include in ping Returns: Platform status, version, and available services count. Price: $0.25 """ result = await call_coinrailz_service("ping", {"message": message}) return json.dumps(result, indent=2)