get_perp_metadata
Fetch metadata for perpetual markets on Hyperliquid exchange, including trading pairs, contract details, and optional asset contexts.
Instructions
Fetch metadata about perpetual markets on the Hyperliquid exchange.
Parameters:
include_asset_ctxs (bool, optional): If True, includes asset contexts with metadata. Defaults to False.
ctx (Context, optional): The MCP context object for accessing server state.
Returns:
str: A JSON string containing metadata about perpetual markets, including trading pairs and contract details
(e.g., symbol, tick size). Returns a JSON string with an error message if the query fails.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| include_asset_ctxs | No |
Input Schema (JSON Schema)
{
"properties": {
"include_asset_ctxs": {
"default": false,
"title": "Include Asset Ctxs",
"type": "boolean"
}
},
"type": "object"
}