Pensyve MCP server
Universal memory runtime for AI agents — episodic, semantic, and procedural memory.
84 stars
Reviews
Write oneNobody has reviewed Pensyve yet.
If you have run it, two minutes of your experience saves the next person an afternoon.
Pensyve tools
Tool list not cached yet. `describe` through the gateway fetches it live.
Public scan report
scanner v0.1.9 · 2026-09-20 · same rubric, same numbers if you re-run it
- –Code scanremote-only server, no package to scann/a
- Live reliabilityremote reachable in 182ms (auth required)20/20
- –Tool poisoningtools not inspected (endpoint requires auth); not countedn/a
- Auth qualityOAuth resource metadata advertised on 40115/15
- Maintenancelast push 3 days ago15/15
- Maintainer identityregistry namespace matches repository owner; GitHub account older than a year9/10
What the publisher says
From the Pensyve repository's README, as published. We do not edit it. Read it on GitHub
Pensyve
Universal memory runtime for AI agents. Framework-agnostic, protocol-native, offline-first.
Without memory
User: "I prefer dark mode and use vim keybindings"
Agent: "Got it!"
[next session]
User: "Update my editor settings"
Agent: "What settings would you like to change?"
User: "I ALREADY TOLD YOU"With Pensyve
# Session 1 — agent stores the preference
p.remember(entity=user, fact="Prefers dark mode and vim keybindings", confidence=0.95)
# Session 2 — agent recalls it automatically
memories = p.recall("editor settings", entity=user)
# → [Memory: "Prefers dark mode and vim keybindings" (score: 0.94)]Your agent stops being amnesiac. Decisions, patterns, and outcomes persist across sessions — and the right context surfaces when it's needed.
Why Pensyve
Install
pip install pensyve # Python (PyPI)
npm install @pensyve/sdk # TypeScript (npm)
go get github.com/major7apps/pensyve/pensyve-go/v3@latest # GoOr use the MCP server directly with Antigravity CLI, Codex, Claude Code, Cursor, or any MCP client — see MCP Setup.
Quick Start
pip install pensyveEpisode: your agent remembers a conversation
import pensyve
p = pensyve.Pensyve()
user = p.entity("user", kind="user")
# Record a conversation — Pensyve captures it as episodic memory
with p.episode(user) as ep:
ep.message("user", "I prefer dark mode and use vim keybindings")
ep.message("agent", "Got it — I'll remember your editor preferences")
ep.outcome("success")
# Later (even in a new session), the agent recalls what happened
results = p.recall("editor preferences", entity=user)
for r in results:
print(f"[{r.score:.2f}] {r.content}")Recall grouped: feed an LLM reader without rebuilding session blocks
Shortened. The full README is on GitHub.
Nothing above is checked by us. What we check is on the safety report.
Install directly
claude mcp add --transport http pensyve https://mcp.pensyve.com/mcp
Pensyve: common questions
- Is Pensyve MCP server safe?
- Yes, by our scan: it is graded A (98/100). Read the Pensyve safety report
- How do I install Pensyve?
- It runs remotely at mcp.pensyve.com. Add it to Claude Code, Claude Desktop or Cursor with the snippets above, or call it through the mcp.market gateway without installing anything.
- Does Pensyve need an API key?
- No key to paste: it signs you in with OAuth when your client connects.
- Is Pensyve maintained?
- The last commit was 3 days ago (2026-09-17). The latest release is v4.0.0.
- Is Pensyve up?
- 100% of our last 6 checks got an answer. We check remote servers about four times a day.