mimir_state_get
Retrieve a session state value by key. Returns null if the key has expired or does not exist, for transient data without full-text search.
Instructions
Get a state value by key. Returns null if the key has expired or doesn't exist. Use this instead of mimir_recall for transient session state that doesn't need FTS5 search.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | State key to retrieve |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | No | State key requested | |
| found | No | Whether the key exists and hasn't expired | |
| value | No | JSON value if found | |
| created_at_unix_ms | No | Creation timestamp | |
| expires_at_unix_ms | No | Expiration timestamp if TTL was set |