Pensyve Cloud
Pensyve Cloud is the managed service at pensyve.com. Same engine, zero infrastructure. Sign up, grab an API key, and start remembering.
What You Get
| Feature | Description |
|---|---|
| Hosted API | api.pensyve.com — same REST API as self-hosted, managed for you |
| Dashboard | Real-time overview, memory browser, activity charts, usage stats |
| API Key Management | Create, revoke, and rotate scoped keys from the dashboard |
| Three-Tier Billing | Pay only for what you use — standard, multimodal, and extraction operations |
| SSO | Sign in with GitHub, Google, or email magic links |
| Multi-region | Deployed on AWS us-east-2, with data residency guarantees |
Quick Start
1. Create an Account
Go to pensyve.com/sign-in and sign in with GitHub, Google, or email.
2. Create an API Key
Navigate to Dashboard → API Keys and click Create Key. Choose a scope — full access (mcp), read only (mcp:read), or write only (mcp:write). Copy the key — it's only shown once. See Authentication for details on scopes, rotation, and MCP client setup.
3. Connect Your SDK
import pensyve
p = pensyve.Pensyve(
api_url="https://api.pensyve.com",
api_key="psy_your_key_here",
namespace="my-agent",
)import { Pensyve } from "pensyve";
const p = new Pensyve({
baseUrl: "https://api.pensyve.com",
apiKey: "psy_your_key_here",
});4. Start Remembering
p.remember(entity="user", fact="Prefers dark mode", confidence=0.9)
results = p.recall("UI preferences", entity="user")That's it. Check the dashboard to see your memories appear in real time.
Dashboard
The dashboard gives you visibility into your memory runtime:
- Overview — total memories, entity count, storage usage, P95 recall latency
- Activity Chart — recalls, remembers, and forgets over the last 30 days
- Memory Types — breakdown of episodic, semantic, and procedural memories
- Memory Browser — search, filter, and inspect individual memories with confidence scores and stability ratings
- Billing — usage meters for each operation tier, estimated cost, payment management
API Authentication
Pensyve supports two auth methods — API keys for programmatic access and OAuth 2.1 for interactive use (Claude Code plugin, VS Code extension).
Every API request must include your key:
Authorization: Bearer psy_your_key_hereKeys support three scopes (full, read-only, write-only) and can be rotated with zero downtime via a 24-hour grace period. See the Authentication guide for full details including MCP client configuration.
Pensyve Cloud runs the same open-source engine as self-hosted Pensyve. There's no vendor lock-in — export your data anytime and run it locally.
Self-Hosted vs. Cloud
| Self-Hosted | Pensyve Cloud | |
|---|---|---|
| Setup | Install + configure | Sign up + API key |
| Infrastructure | You manage | We manage |
| Storage | SQLite (local) | Postgres (managed) |
| Scaling | Manual | Automatic |
| Cost | Free (Apache 2.0) | Pay-per-operation |
| Data residency | Your machine | AWS us-east-2 |
| Support | Community | Priority |
Both options use the same SDKs, same API, same retrieval engine. Switch between them by changing a URL.