MCP Paradex Server

by sv
Verified

paradex-vault-details

Get detailed information about a specific vault. Retrieves comprehensive details about a specific vault identified by its address, including configuration, permissions, and other vault-specific parameters. Returns: Dict[str, Any]: Detailed vault information with the following structure: - success (bool): Whether the request was successful - timestamp (str): ISO-formatted timestamp of the request - environment (str): Current Paradex environment (mainnet/testnet) - vaults (List[Dict]): List containing the vault details - count (int): Number of vaults returned (should be 1) If an error occurs, returns: - success (bool): False - timestamp (str): ISO-formatted timestamp of the request - environment (str): Current Paradex environment - error (str): Error message - vaults (List): Empty list - count (int): 0

Input Schema

NameRequiredDescriptionDefault
vault_addressYesThe address of the vault to get details for.

Input Schema (JSON Schema)

{ "properties": { "vault_address": { "description": "The address of the vault to get details for.", "title": "Vault Address", "type": "string" } }, "required": [ "vault_address" ], "title": "get_vault_detailsArguments", "type": "object" }