agent-management
Get Agent Status
Get agent status (Local Agent System).
Returns comprehensive status including configuration, knowledge base, tools, and operational metrics.
GET
Get Agent Status
Documentation Index
Fetch the complete documentation index at: https://docs.mrassistant.ai/llms.txt
Use this file to discover all available pages before exploring further.
Previous
List Agent ConversationsList all conversation sessions for an agent.
Returns a paginated list of conversations with summary information.
Use this to:
- View conversation history
- Audit agent interactions
- Find specific conversations
- Track agent usage
Example response:
```json
{
"sessions": [
{
"conversation_id": "conv-123",
"created_at": "2025-11-25T10:00:00Z",
"updated_at": "2025-11-25T10:05:00Z",
"message_count": 12,
"last_message_preview": "Thank you for your help!"
}
],
"total": 45,
"limit": 10,
"offset": 0
}
```
Next
Get Agent Status