Skip to main content
Glama
tdnupe3

Coin Railz MCP Server

by tdnupe3

track_portfolio

Track cryptocurrency portfolio value, allocation, profit/loss, and historical performance across multiple blockchain chains using wallet address.

Instructions

Get comprehensive portfolio tracking and analytics.

Args: wallet_address: The wallet address to track chains: List of chains to include in portfolio

Returns: Portfolio value, allocation, P&L, and historical performance.

Price: $0.75

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
wallet_addressYes
chainsNo

Implementation Reference

  • Implementation of the track_portfolio tool, which handles the request to the Coinrailz portfolio-tracker service.
    @mcp.tool()
    async def track_portfolio(wallet_address: str, chains: List[str] = None) -> str:
        """
        Get comprehensive portfolio tracking and analytics.
        
        Args:
            wallet_address: The wallet address to track
            chains: List of chains to include in portfolio
        
        Returns:
            Portfolio value, allocation, P&L, and historical performance.
        
        Price: $0.75
        """
        payload = {
            "walletAddress": wallet_address,
            "chains": chains or ["ethereum", "base", "polygon", "arbitrum"]
        }
        result = await call_coinrailz_service("portfolio-tracker", 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