get_vault_reallocates
Retrieve reallocation details for a specific vault, including timestamps and order direction, through the Morpho API MCP Server's GraphQL interface.
Instructions
Get vault reallocates for a specific vault.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
first | No | ||
orderBy | No | ||
orderDirection | No | ||
skip | No | ||
vaultAddress | Yes |
Input Schema (JSON Schema)
{
"properties": {
"first": {
"type": "number"
},
"orderBy": {
"enum": [
"Timestamp"
],
"type": "string"
},
"orderDirection": {
"enum": [
"Asc",
"Desc"
],
"type": "string"
},
"skip": {
"type": "number"
},
"vaultAddress": {
"type": "string"
}
},
"required": [
"vaultAddress"
],
"type": "object"
}