Privacy and analytics

We use necessary technical cookies and, only with your consent, analytics and marketing pixels to improve the website and measure campaigns.

Privacy policyCookie policy
Docs
English
EspañolEnglishFrançaisDeutschItalianoPortuguês

Getting started

  • What is Nömad?
  • Getting started with Nömad
  • Create your brand and complete the Genome
  • Invite your team
  • Glossary

Brand OS

  • What is inside Brand OS
  • What is the Genome?
  • Who is Nödo?
  • What does a Brand Manager do?
  • Brand Kit and Library
  • Posts and calendar
  • Connections
  • Meetings

Work

  • Work and tasks
  • Ordering work
  • Following, reviewing and approving deliveries
  • Custom quotes
  • Yes, there are humans behind it

Account and billing

  • Plans and pricing
  • Billing and payments
  • Roles and permissions
  • Workspaces and multiple brands
  • Languages, apps and data

Help

  • How to get help

API

  • Brand API
    • Permissions and roles
    • Brand
    • Genome
    • Brand Kit
    • Library
    • Works
    • Calendar
    • Connections
    • Publishing
    • Inbox
    • Team
    • Conversation
    • Memory
    • Questions
    • Media
    • Store
    • Plan
    • Orders
    • Activity

MCP

  • MCP server

Connectors

  • Brand connectors

Nödo and agents

  • Nödo in the brand
API/Brand API
Reference1 min read

Memory

Human-reviewed memory.

On this page
  • memory.search · Search memory
  • memory.propose · Propose a memory

Updated on January 1, 1970

Previous
Русский
한국어
日本語
中文
हिन्दी
Open the app
Conversation
NextQuestions

In this section

  • Permissions and roles
  • Brand
  • Genome
  • Brand Kit
  • Library
  • Works
  • Calendar
  • Connections
Can't find what you need? Write to usWrite to usGo to the app
© 2026 Nömad · Nömad documentationLinkedInInstagramFacebookTikTokYouTubeX
Go to nomad.oooBack to top

On this page

  • memory.search · Search memory
  • memory.propose · Propose a memory

memory.search · Search memory

Searches reviewed brand memory: accepted facts, decisions and episode summaries of conversations and works. Hybrid keyword and semantic search; every hit carries its source.

FieldValue
KindRead
HTTP methodPOST /api/v1/memory.search
MCP toolmemory_search
Scopememory.read
Minimum roleViewer
Human confirmationNo
DoorsNödo, Voice, MCP, API
StatusPlanned
Widgetsources

Input

{
  query: string  // ≤ 300
  kinds?: Array<"fact" | "decision" | "episode">
  asOf?: string  // ISO date: return what was valid on that day.
  limit?: integer  // 1–20 · default 8
}

Output

{
  items: Array<{
    id: string  // uuid
    kind: "fact" | "decision" | "episode"
    text: string
    section: string | null
    validFrom: string | null
    validUntil: string | null
    source: {
      conversationId?: string  // uuid
      messageSequence?: integer  // -9007199254740991–9007199254740991
      taskId?: string  // uuid
      assetId?: string  // uuid
      url?: string  // uri
    }
    score: number
  }>
}

memory.propose · Propose a memory

Proposes to remember an explicit decision or fact stated by a person, citing the message. It stays pending until someone accepts it in Genome. At most 3 per run; never from internal or private threads.

FieldValue
KindWrite
HTTP methodPOST /api/v1/memory.propose
MCP toolmemory_propose
Scopememory.write
Minimum roleMember
Human confirmationNo
DoorsNödo
StatusAvailable

Input

{
  kind: "fact" | "decision"
  section: string  // ≤ 40
  text: string  // ≤ 1000
  validFrom?: string
  validUntil?: string
  citation: {
    conversationId?: string  // uuid
    messageSequence?: integer  // -9007199254740991–9007199254740991
    taskId?: string  // uuid
    assetId?: string  // uuid
    url?: string  // uri
  }
}

Output

{
  ok: true
  id?: string
  revision?: integer  // -9007199254740991–9007199254740991
}