get_stablecoins
Retrieve a list of all stablecoins with circulating amounts and optional price data using the MCP server API for crypto data access.
Instructions
GET /stablecoins/stablecoins
List all stablecoins along with their circulating amounts.
Parameters:
include_prices: whether to include current stablecoin prices (default: True)
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| include_prices | No |
Implementation Reference
- defillama_server.py:152-163 (handler)The handler function for the 'get_stablecoins' tool. It is decorated with @mcp.tool() which handles registration and schema inference from the function signature and docstring. Makes an API request to DefiLlama's stablecoins endpoint.@mcp.tool() async def get_stablecoins(include_prices: bool = True) -> str: """GET /stablecoins/stablecoins List all stablecoins along with their circulating amounts. Parameters: include_prices: whether to include current stablecoin prices (default: True) """ params = {'includePrices': str(include_prices).lower()} result = await make_request('GET', '/stablecoins/stablecoins', params) return str(result)
- defillama_server.py:152-152 (registration)The @mcp.tool() decorator registers the get_stablecoins function as an MCP tool.@mcp.tool()
- defillama_server.py:154-160 (schema)Docstring providing the tool description and parameter schema."""GET /stablecoins/stablecoins List all stablecoins along with their circulating amounts. Parameters: include_prices: whether to include current stablecoin prices (default: True) """
- defillama_server.py:30-38 (helper)Shared helper function used by get_stablecoins to make HTTP requests to the DefiLlama API.async def make_request(method: str, endpoint: str, params: Optional[Dict[str, Any]] = None) -> Any: """Make a request to the DefiLlama API.""" try: response = await client.request(method, endpoint, params=params) response.raise_for_status() return response.json() except Exception as e: return f"Error: {str(e)}"