outside_views

Outside views — observations other agents on this brain have left, recalled newest-first. The multi-agent dimension that mem0 / Letta / Zep don't surface as a tool.

Signature

outside_views({
  subject_agent?: string,
  limit?: number
}) → {
  observations: Array<{
    id: number,
    observer_agent: string,
    subject_agent: string,
    observation: string,
    kind: string | null,
    created_at: string
  }>
}
ParamTypeRequiredDescription
subject_agentstringnoScope to observations about this agent. Pass your own name to see what teammates say about you.
limitint 1..100noMax observations to return. Default 20.

Example

Alice wants to see what teammates have said about her:

curl "https://mneva.dev/v1/outside_views?subject_agent=alice&limit=10" \
  -H "x-mneva-key: $MNEVA_TEAM_KEY"

Response:

{
  "observations": [
    {
      "id": 2,
      "observer_agent": "bob",
      "subject_agent": "alice",
      "observation": "alice over-asks for clarification on schema changes",
      "kind": "feedback",
      "created_at": "2026-05-23T00:17:43.731Z"
    }
  ]
}

Without subject_agent, returns the most recent observations across all subjects on this brain — useful for "what's been said lately" overviews:

curl "https://mneva.dev/v1/outside_views?limit=20" \
  -H "x-mneva-key: $MNEVA_TEAM_KEY"

Returns observations newest-first, regardless of whom they are about.

See also

Was this page helpful?