Blog·Engineering

Introducing @supermemory/tools v2.0.0

By Mahesh Sanikommu·5 min read

Blog cover banner reading "Introducing @supermemory/tools v2.0.0" beside an open box bursting with code and gear icons

Today we're releasing v2.0.0. This release unifies the API across all agents sdk integrations from AI SDK to Mastra, makes conversation identity a first-class concept, and ships with memory saving on by default.

What's new in v2.0.0:

  • Unified config-object API
  • customId: required conversation identity
  • Memory saving on by default
  • VoltAgent: verbose and profile-mode warnings fixed
  • Everything that shipped from v1.0 to v2.0

Upgrading from 1.4.x? The changes are mechanical — most teams are done in under 5 minutes. See the v1.4 → v2.0 migration guide.

Unified config-object API

In v1.x, each integration had a slightly different call signature. Vercel AI SDK and OpenAI took containerTag as a positional argument. Mastra used constructor arguments in a different order. Every integration had its own name for the conversation ID field — conversationId in Vercel and OpenAI, threadId in Mastra.

This made the package harder to learn and harder to switch between integrations. If you built on Vercel AI SDK and wanted to add a Mastra processor, you had a different API to memorize.

In v2.0.0, every integration shares the same options object:

import { withSupermemory } from "@supermemory/tools/ai-sdk"
import { openai } from "@ai-sdk/openai"

const model = withSupermemory(openai("gpt-4o"), {
  containerTag: "user-123",
  customId: "conv-456",
  mode: "full",
  addMemory: "always",
})

The same shape works on OpenAI:

import { withSupermemory } from "@supermemory/tools/openai"

const client = withSupermemory(new OpenAI(), {
  containerTag: "user-123",
  customId: "conv-456",
})

And on Mastra:

import { SupermemoryInputProcessor } from "@supermemory/tools/mastra"

const input = new SupermemoryInputProcessor({
  containerTag: "user-123",
  customId: "conv-456",
  mode: "full",
})

One API. Four integrations. Same mental model everywhere.

Note
for VoltAgent users: VoltAgent already used a config-object signature before v2.0.0, so your call shape is unchanged. See the VoltAgent section for what actually changed in your integration.

To learn more, see the integration documentation.

customId: required conversation identity

In v1.x, conversationId (or threadId in Mastra) was optional. When omitted, conversations weren't grouped — each turn was saved in isolation, making it impossible to retrieve the full context of a session later.

In v2.0.0, customId is required across all integrations. Omitting it or passing an empty string throws at construction time, so you catch the error immediately rather than silently losing conversation context in production.

// This throws immediately with a clear error message
const model = withSupermemory(openai("gpt-4o"), {
  containerTag: "user-123",
  customId: "",  // ❌ throws: customId must be a non-empty string
})
// Use a stable, meaningful ID — a session UUID, thread ID, or date-scoped key
const model = withSupermemory(openai("gpt-4o"), {
  containerTag: "user-123",
  customId: `chat-${sessionId}`,  // ✅
})

customId groups every message from a session into a single conversation document in Supermemory, making that full context available for retrieval in future sessions.

containerTag vs customId at a glance:

containerTag

customId

Represents

Who the memory belongs to

Which conversation this turn belongs to

Scope

User, workspace, or tenant

Session, thread, or conversation

Example

"user-123", "acme-corp"

"chat-2026-04-26", a UUID

Memory search

Scoped to this tag

Groups messages into one document

To learn more, see the Vercel AI SDK integration or the migration guide.

Memory saving on by default

In v1.x, addMemory defaulted to "never". Memory saving had to be explicitly enabled, which meant it was easy to forget — and easy to deploy an agent that retrieved memories but never built any new ones.

In v2.0.0, addMemory defaults to "always". When a conversation ends, it's automatically saved to Supermemory and becomes available for retrieval in future sessions. No extra configuration required.

// v1.x — had to opt in
const model = withSupermemory(openai("gpt-4o"), "user-123", {
  addMemory: "always",  // easy to forget
})

// v2.0.0 — saves by default
const model = withSupermemory(openai("gpt-4o"), {
  containerTag: "user-123",
  customId: "conv-456",
  // addMemory: "always" is the default
})

If you want to retrieve memories without saving new ones — for example in a read-only context or during testing — opt out explicitly:

const model = withSupermemory(openai("gpt-4o"), {
  containerTag: "user-123",
  customId: "conv-456",
  addMemory: "never",
})
Note
This default applies to Vercel AI SDK, OpenAI SDK, and Mastra. VoltAgent already defaulted to "always" in v1.x.

VoltAgent: verbose and profile-mode warnings

VoltAgent's call shape was already a config object before v2.0.0, so there are no breaking API changes for VoltAgent users.

Profile-mode warnings for ignored search params. When mode: "profile" is set, parameters like threshold, limit, rerank, rewriteQuery, and searchMode have no effect — profile mode fetches the full user profile and doesn't run a search query. Previously these were silently ignored. Now a runtime warning is logged when any of them are set alongside mode: "profile", so configuration mistakes surface immediately.

To learn more, see the VoltAgent integration.

Everything that shipped from v1.0 to v2.0

v2.0.0 is a milestone, but a lot of capability landed across the releases between the initial Vercel AI SDK-only release and today.

New integrations

@supermemory/tools started with Vercel AI SDK support only. Between v1.0 and v2.0, three more integrations were added:

  • OpenAI SDKwithSupermemory wrapper for chat.completions.create, with support for the Responses API (responses.create) and automatic assistant response capture
  • MastraSupermemoryInputProcessor and createSupermemoryOutputProcessor with RequestContext support for per-request thread IDs
  • VoltAgentwithSupermemory agent config wrapper that hooks into onPrepareMessages (retrieval) and onEnd (saving) lifecycle events

Memory retrieval modes

Three modes control what gets retrieved before each LLM call:

// "profile" — retrieves the user profile built from past sessions
const model = withSupermemory(openai("gpt-4o"), { containerTag: "user-123", customId: "conv-1", mode: "profile" })

// "query" — semantic search across past memories based on the current message
const model = withSupermemory(openai("gpt-4o"), { containerTag: "user-123", customId: "conv-1", mode: "query" })

// "full" — both profile and query results combined (highest recall)
const model = withSupermemory(openai("gpt-4o"), { containerTag: "user-123", customId: "conv-1", mode: "full" })

Custom prompt templates

The promptTemplate option lets you control exactly how retrieved memories are formatted before they're injected into the system prompt:

import { withSupermemory, type MemoryPromptData } from "@supermemory/tools/ai-sdk"

const model = withSupermemory(openai("gpt-4o"), {
  containerTag: "user-123",
  customId: "conv-456",
  mode: "full",
  promptTemplate: (data: MemoryPromptData) => `
<memory>
  <profile>${data.userMemories}</profile>
  <context>${data.generalSearchMemories}</context>
</memory>
  `.trim(),
})

The data object also exposes raw searchResults so you can filter by metadata before injection.

Resilience: skipMemoryOnError and fetch timeout

Memory retrieval should never block your LLM call. Two additions make this reliable:

  • skipMemoryOnError: true (default) — if Supermemory is unreachable or returns an error, the LLM call proceeds with the original prompt. Use verbose: true to log when this happens.
  • Internal fetch timeout — memory retrieval is bounded. It never hangs your response indefinitely.
const model = withSupermemory(openai("gpt-4o"), {
  containerTag: "user-123",
  customId: "conv-456",
  skipMemoryOnError: false,  // fail the call if memory retrieval fails
})

Browser and other environments support

apiKey can now be passed via options instead of relying on process.env.SUPERMEMORY_API_KEY, enabling @supermemory/tools to work in browser environments (and others):

const model = withSupermemory(openai("gpt-4o"), {
  containerTag: "user-123",
  customId: "conv-456",
  apiKey: "sm-...",  // no process.env required
})

Performance improvements

  • Memory deduplication — duplicate memories are removed before injection, reducing token waste
  • LRU cache — repeated memory lookups within the same session are served from cache
  • Multi-step prompt caching — compatible with Vercel AI SDK's multi-turn agent flows
  • Concurrent tool calls — Claude memory tools execute in parallel instead of sequentially

Migrating from 1.4.x

The changes in v2.0.0 are mechanical. For Vercel AI SDK, OpenAI, and Mastra users:

  1. Move containerTag from the positional argument into the options object
  2. Rename conversationId or threadId to customId
  3. Add addMemory: "never" if you relied on the old default

For VoltAgent users, no API changes are required — only review the verbose behavior if relevant.

npm install @supermemory/tools@^2.0.0

For before/after code for all four integrations, see the full migration guide.

Get started

Start using @supermemory/tools v2.0.0:

Pick your integration:

Resources:

  1. An update to supermemoryWe've discontinued the supermemory company brain and Nova. Everyone who was charged has been refunded, our MCP and plugins continue to run, and we're going all in on the memory engine.
  2. SMFS: making agentic retrieval 55% cheaper AND more accurateWe launched SMFS.ai (Supermemory Filesystem) a few weeks ago, with a simple bet: We can redesign the filesystem specifically for agents, with special files, structures, and commands that it can use for it's tasks. Today, SMFS is used by hundreds of companies to power their agents.
  3. Introducing Dynamic Dreaming: supermemory now connects the dots, for you.Dreaming is magical. TLDR: We're launching Dynamic Dreaming in supermemory today, which automatically works if you're using supermemory in any way - API, OpenClaw, Hermes agent, etc.
  4. Dear reader, we just made supermemory insanely cheap... the Context CloudWhen I first started building supermemory, I had one goal: To build the best memory system for AI. I would talk to customers, and find out that memory was not the only thing they needed - They were all setting up 7-8 different vendors at the same time.
  5. supermemory will make your Hermes-agent crazy powerfulToday, we are launching supermemory support to your Hermes agent TLDR: you can use supermemory now in your Hermes agent, it totally free to get started - https://supermemory.ai/docs/integrations/hermes In case you missed it: Hermes Agent is a self-improving AI agent from Nous Research.
  6. Solving the Precision-Recall Tradeoff: Search Result AggregationWhen you're building memory for AI, search is your foundational layer. The way search generally works is straightforward: the user defines a query, and then sets a limit (top-K) on how many search results they want returned. Usually, this is set to 10 or 20.
  7. Infinitely running stateful coding agentsWe built a plugin for Claude Code and OpenCode that gives your coding agent persistent memory. It remembers your preferences, learns your codebase, and never loses context mid-conversation. The result is an agent you can run for months without starting over.
  8. Why everyone is complaining about OpenClaw's memory (it sucks) - and why supermemory fixes it.TLDR: Today, we are releasing a new version of our openclaw plugin - https://github.com/supermemoryai/openclaw-supermemory. This post is going to be a bit technical, so bear with me (or bookmark for later!) In this post, I will talk about what we do about OpenClaw memory, and how we fix it.
  9. We added supermemory to Claude Code. It's INSANELY powerful now...Today, we are launching the Supermemory plugin for Claude Code! TLDR: You can use supermemory in claude code now. - https://github.com/supermemoryai/claude-supermemory Claude code has genuinely changed how I work. But there's this one thing that drives me crazy...
  10. Clawd / Molt bot's memory SUCKS. We gave it supermemory.I'm the founder of supermemory. Clawd/Molt bot is blowing up right now, with many, many use cases. I set it up, too, and have been using it through telegram. TLDR: just go to https://supermemory.ai/docs/integrations/clawdbot to set up supermemory for your clawd bot.
  11. Catch up with our UNFORGETTABLE Launch WeekOver the last year, one belief has guided almost everything we’ve built at Supermemory AI becomes meaningfully useful only when it remembers. Memory shouldn’t be something developers rebuild from scratch. It shouldn’t be fragile, expensive, or trapped inside a single tool.
  12. Empowering the Next Generation of Founders: Supermemory Startup ProgramIf there’s one thing we’ve learned while building Supermemory, it’s that most startups don’t fail because they didn't build features; they fail when infrastructure slows them down, or they built too slow.
  13. Building code-chunk: AST Aware Code ChunkingAt Supermemory, we're building context engineering infrastructure for AI. A huge part of that is dealing with code: ingesting repos, understanding structure, and making it searchable. The problem is that most code chunking solutions are terrible. We built code-chunk to fix this.
  14. Supermemory raises $3 million with the best memory engine for LLMsToday, I am excited to announce our first funding round to accelerate our mission of building an interoperable, scalable and reliable memory for LLMs and agents. Memory is one of the hardest challenges in AI right now.
  15. Unified Memory That Works Where You Work: Your Second Brain With SupermemoryHi everyone, I’m Dhravya, the founder of Supermemory. I want to start with a little story behind why this product means so much to me. You can also skip straight to what it is and how it works below.
  16. Supermemory just got faster on PlanetScaleWhat is Supermemory? Supermemory completes the missing part of the LLM puzzle: memory. Just as memory is crucial for human intelligence, it's essential for truly intelligent AI systems.
  17. Faster, smarter, reliable infinite chat: Supermemory IS context engineering.People are obsessed with prompts and prompt engineering. Sure, what you say is important, but what the model knows when you say it is the difference between a stateless text generator and an intelligent AI system. In short, context is the most crucial component.
  18. We solved AI API interoperabilityOne API to rule them all, One spec to find them, One library to bring them all and in the TypeScript, bind them. When we were building the the Infinite Chat API, initially, we only supported the OpenAI format. This was fine, until a lot of our customers started asking, asking for more.
  19. The UX and technicalities of awesome MCPsLast month, we launched the Supermemory MCP, mostly to test our own infrastructure and get some initial traction. It blew up. To my absolute surprise, the initial launch itself got half a million impressions (!!!). Then, we launched and got #2 on ProductHunt too.
  20. Architecting a memory engine inspired by the human brainLanguage is at the heart of intelligence, but what truly powers meaningful interaction is memory — the ability to accumulate, recall, and contextualize information over time. Large Language Models (LLMs) have mastered language, but memory remains their Achilles’ heel.