basic-memory

build_context

Build context from a memory:// URI to continue conversations naturally.

Use this to follow up on previous discussions or explore related topics. Timeframes support natural language like: - "2 days ago" - "last week" - "today" - "3 months ago" Or standard formats like "7d", "24h"

Input Schema

NameRequiredDescriptionDefault
depthNo
max_relatedNo
pageNo
page_sizeNo
timeframeNo7d
urlYes

Input Schema (JSON Schema)

{ "properties": { "depth": { "anyOf": [ { "type": "integer" }, { "type": "null" } ], "default": 1, "title": "Depth" }, "max_related": { "default": 10, "title": "Max Related", "type": "integer" }, "page": { "default": 1, "title": "Page", "type": "integer" }, "page_size": { "default": 10, "title": "Page Size", "type": "integer" }, "timeframe": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": "7d", "title": "Timeframe" }, "url": { "maxLength": 2028, "minLength": 1, "title": "Url", "type": "string" } }, "required": [ "url" ], "title": "build_contextArguments", "type": "object" }