1. Conduid
  2. Data
  3. Powermem
MCP server · Data

Powermem

PowerMem: Your AI-Powered Long-Term Memory — Accurate, Agile, Affordable. Also friendly support for the OpenClaw (Clawdbot) Memory Plugin.

80Excellent

Scored 3 hours ago · breakdown

About Powermem

Powermem is an MCP server published by oceanbase in the Data category: powerMem: Your AI-Powered Long-Term Memory — Accurate, Agile, Affordable. Also friendly support for the OpenClaw (Clawdbot) Memory Plugin. It has been installed 0 times through Conduid.

The repository has 469 stars and 55 forks, with the last commit 6 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx powermem

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Powermem

Powered by Claude · Grounded in docs

I know everything about Powermem. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

powercontext-v0.1.0PowerContext v0.1.0 · 31 Aug 2026PowerContext v0.1.0 更广、更安全的上下文运行层 · A broader, safer context runtime** [中文](#中文) · [English](#english) 中文 概览 PowerContext v0.1.0 将项目上下文从少数 Agent 集成扩展到更完整的 Agent 与框架生态,同时增强了配置、诊断、持久化、可观测性和网络安全边界。 这个版本让团队可以用同一套按 scope 隔离、保留证据链的 Memory 与…
v0.0.2PowerContext v0.0.2 · 20 Aug 2026PowerContext v0.0.2 — Work Continuity Across Agents PowerContext v0.0.2 expands durable project Memory into a practical work-continuity layer for human-agent and agent-to-agent collaboration. This release introduces a complete Work…
v0.0.1PowerContext v0.0.1 · 13 Aug 2026PowerContext v0.0.1 PowerContext is PowerMem 2.0, the upgraded version of PowerMem. It turns human-agent work into durable, project-scoped context so that a new agent session can recover decisions, outcomes, current state, and next steps…
v1.1.7PowerMem v1.1.7 · 30 Jun 2026What's Changed fix(ci): dispatch publish workflow without git checkout by @wayyoungboy in https://github.com/oceanbase/powermem/pull/1116 feat(plugin): enable transcript inference by default; remove recall/remember skills by @lightzt99 in…
v1.1.6PowerMem v1.1.6 · 29 Jun 2026What's Changed feat: sqlite default to coding agent by @lightzt99 in https://github.com/oceanbase/powermem/pull/1031 docs: update LOCOMO benchmark results by @wayyoungboy in https://github.com/oceanbase/powermem/pull/1089 Add Chinese docs…

README

PowerMem

Persistent memory for AI agents and applications.

PyPI version PyPI downloads License Apache 2.0 GitHub Discord

English · 中文 · 日本語

PowerMem combines vector, full-text, and graph retrieval with LLM-driven memory extraction and Ebbinghaus-style time decay. It supports multi-agent isolation, user profiles, and multimodal signals (text, image, audio).

Use the Python SDK, CLI (pmem), or the HTTP API Server (with Dashboard at /dashboard/). An MCP server is also available. All share one .env. See .env.example and the configuration guide.

OpenClaw integration

OpenClaw can use PowerMem as long-term memory via the memory-powermem plugin.

openclaw plugins install memory-powermem

Requires the OpenClaw CLI to be installed.

Quick start

Prerequisites: Copy .env.example to .env and set LLM and embedding credentials (the default database is SQLite; OceanBase can use embedded SeekDB — see .env.example). Alternatively, after installing PowerMem, run pmem config init to create .env interactively. See Getting started.

Install

pip install powermem

SDK example

Run from a directory that contains your configured .env:

from powermem import Memory, auto_config

config = auto_config()
memory = Memory(config=config)

memory.add("User likes coffee", user_id="user123")

results = memory.search("user preferences", user_id="user123")
for result in results.get("results", []):
    print(f"- {result.get('memory')}")

More patterns: Getting Started.

CLI (pmem, 1.0+)

pmem memory add "User prefers dark mode" --user-id user123
pmem memory search "preferences" --user-id user123

Interactive REPL (run separately; exits with exit or Ctrl+D):

pmem shell

Full reference: CLI usage.

HTTP API Server and Dashboard

Uses the same .env as the SDK. Dashboard is served under /dashboard/.

powermem-server --host 0.0.0.0 --port 8000

Use Docker or Compose as needed — see API Server and Docker & deployment.

Entry points

Mode Typical commands Docs
CLI pmem memory add / pmem memory search; pmem shell CLI usage
HTTP + Dashboard powermem-server --host 0.0.0.0 --port 8000; image oceanbase/powermem-server:latest; from repo root: docker-compose -f docker/docker-compose.yml up -d API Server

Requires uv and a configured .env in the working directory (see MCP Server).

uvx powermem-mcp sse

Also supports stdio and streamable-http.

Benchmark (LOCOMO)

Compared to stuffing full conversation context on LOCOMO:

Dimension Result
Accuracy 78.70% vs. 52.9%
Retrieval p95 latency 1.44s vs. 17.12s
Tokens ~0.9k vs. ~26k

Capabilities

Interfaces and toolingPython integration; CLI (pmem); HTTP API / Dashboard; MCP (optional); IDE apps (VS Code / Cursor, Claude Code, and more).

Memory pipeline and retrievalSmart extraction and updates; Ebbinghaus-style decay; Hybrid retrieval (vector / full-text / graph); Sub stores and routing.

Profiles and multi-agentUser profile; Shared / isolated memory and scopes.

MultimodalText, image, audio.

Docs

  • Getting started — install, .env, and first Memory usage
  • Configuration — settings model, storage backends, environment variables
  • Architecture — major components, storage layout, and retrieval flow
  • API & services — REST, MCP, HTTP server, and Python-facing APIs
  • CLIpmem commands, interactive shell, backup and migration
  • Multi-agent — scopes, isolation, and cross-agent sharing
  • Integrations — LangChain and other framework wiring
  • Docker & deployment — images, Compose, and running the API server
  • Development — local setup, tests, and contributing

More topics: Sub stores, guides index.

Examples

  • Scenarios & notebooks — walkthroughs by use case (basic usage, multimodal, forgetting curve, and more)
  • LangChain sample — medical support chatbot (LangChain + PowerMem + OceanBase)
  • LangGraph sample — customer service bot (LangGraph + PowerMem + OceanBase)
  • IDE apps — VS Code extension and Claude Code plugin (link PowerMem to Cursor, Copilot, etc.)

Release highlights

Version Date Notes
1.1.0 2026-04-02 Embedded SeekDB for OceanBase storage without a separate database service; IDE integrations (VS Code extension, Claude Code plugin)
1.0.0 2026-03-16 CLI (pmem): memory ops, config, backup/restore/migrate, interactive shell, completions; Web Dashboard
0.5.0 2026-02-06 Unified SDK/API config (pydantic-settings); OceanBase native hybrid search; memory query + list sorting; user-profile language customization
0.4.0 2026-01-20 Sparse vectors for hybrid retrieval; profile-based query rewriting; schema upgrade & migration tools
0.3.0 2026-01-09 Production HTTP API Server; Docker
0.2.0 2025-12-16 Advanced profiles; multimodal (text/image/audio)
0.1.0 2025-11-14 Core memory + hybrid retrieval; LLM extraction; forgetting curve; multi-agent; OceanBase/PostgreSQL/SQLite; graph search

Support

License

Apache License 2.0 — see LICENSE.

README mirrored from the source repository 3 hours ago. The original is authoritative.

Questions

About Powermem

How do I install Powermem?

Run npx powermem, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Powermem safe to use with an AI agent?

Its trust score is 80 out of 100 (excellent). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Powermem still maintained?

Yes — the latest release is powercontext-v0.1.0 (31 Aug 2026), and the last commit was 6 months ago. The repository has 469 stars and 0 open issues.