List recent crop data logs
list_recent_logsread-onlyReturn the signed-in user's most recent crop_data_logs entries (water quality, feed, mortality).
| Param | Type | Required | Description |
|---|---|---|---|
| limit | integer | no | Max rows (default 10). |
| pond_id | string (uuid) | no | Optional pond UUID filter. |
Request
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "list_recent_logs",
"arguments": { "limit": 3 }
}
}Response
{
"jsonrpc": "2.0",
"id": 1,
"result": {
"content": [{ "type": "text", "text": "[ ...3 log rows... ]" }],
"structuredContent": {
"rows": [
{
"id": "6e0b...",
"pond_id": "82b1...",
"log_date": "2026-07-04",
"dissolved_oxygen": 6.2,
"ph": 7.8,
"temperature": 28.4,
"salinity": 15,
"ammonia": 0.02,
"feed_kg": 45.5,
"mortality_count": 3,
"average_body_weight": 18.1
}
]
}
}
}