Pensyve Cloud

Pensyve Cloud is the managed service at pensyve.com. Same engine, zero infrastructure. Sign up and connect with browser OAuth or an API key.

What You Get

FeatureDescription
Hosted APIapi.pensyve.com — same REST API as self-hosted, managed for you
DashboardReal-time overview, memory browser, activity charts, usage stats
API Key ManagementCreate, revoke, and rotate scoped keys from the dashboard
Three-Tier BillingPay only for what you use — standard, multimodal, and extraction operations
SSOSign in with GitHub, Google, or email magic links
Multi-regionDeployed 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 — OAuth 2.1 with PKCE for interactive MCP clients and API keys for SDKs, CI, and other non-interactive automation. Many current MCP clients discover Pensyve's OAuth metadata and open browser consent automatically; the Authentication guide has the verified client-by-client matrix and fallback rules.

Every API request must include your key:

Authorization: Bearer psy_your_key_here

Keys 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-HostedPensyve Cloud
SetupInstall + configureSign up + API key
InfrastructureYou manageWe manage
StorageSQLite (local)Postgres (managed)
ScalingManualAutomatic
CostFree (Apache 2.0)Pay-per-operation
Data residencyYour machineAWS us-east-2
SupportCommunityPriority

Both options use the same SDKs, same API, same retrieval engine. Switch between them by changing a URL.