get_oracle_details
Retrieve detailed oracle information for a specific market using marketUniqueKey and chainId as inputs. Part of the Morpho API MCP Server for accessing market data.
Instructions
Get oracle details for a specific market.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chainId | No | ||
marketUniqueKey | Yes |
Input Schema (JSON Schema)
{
"properties": {
"chainId": {
"type": "number"
},
"marketUniqueKey": {
"type": "string"
}
},
"required": [
"marketUniqueKey"
],
"type": "object"
}