remember_context
Save context information to cache for later recall, enabling AI assistants to avoid re-reading entire codebases by storing project overviews, file summaries, and analysis results.
Instructions
Save context information to the cache so you can recall it later without re-computing. Perfect for caching: codebase overviews, file summaries, project structure, frequently-accessed data, or "thinking" results like dependency analysis. The AI assistant can use this to avoid re-reading the entire codebase every time. Example: remember_context("project overview", "This is a Next.js app with...") then later: recall_context("project overview")
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| instance_id | Yes | UUID of the cache instance | |
| key | Yes | Descriptive key like "project_overview", "auth_architecture", "file:src/index.ts" | |
| content | Yes | The context/summary/analysis to remember | |
| category | No | Category for organization (default: custom) | |
| ttl | No | Time-to-live in seconds (default: 86400 = 24h, use 0 for no expiry) |