-
-
Notifications
You must be signed in to change notification settings - Fork 3
Team Setup
Lyuben Kikov edited this page Jul 20, 2026
·
6 revisions
Extend Aperio to be your Shared Memory
Aperio is personal by default, but the architecture supports team shared memory out of the box.
Aperio stores all data in a single database (SQLite or Postgres). When multiple people connect to the same database, they share the same memory, wiki, and knowledge.
Person A ───┐
Person B ───┼──> Same MCP Server ──> Same Database
Person C ───┘
SQLite works for single-user. For a team, use Postgres:
DB_BACKEND=postgres
DATABASE_URL=postgresql://aperio:password@your-server:5432/aperioStart Aperio on a machine accessible to your team (a server, a cloud VM, or a local machine on your network):
npm run start:cloud # starts on port 1701Each team member configures their MCP host (Cursor, Windsurf, Claude Desktop, etc.):
{
"mcpServers": {
"aperio-team": {
"command": "node",
"args": ["/path/to/aperio/mcp/index.js"],
"env": {
"DATABASE_URL": "postgresql://aperio:password@your-server:5432/aperio"
}
}
}
}remember: "Project Atlas uses Next.js frontend, PlanetScale DB. PM is Sara." type=project
remember: "Sara is PM for Atlas and Beacon. Prefers Slack over email." type=person
remember: "We chose Fly.io over Railway. Revisit if team grows past 10." type=decision
| Use case | Example query |
|---|---|
| Onboarding | "What do I need to know to start contributing?" |
| Project context | "What's the stack for Project Atlas?" |
| Decision history | "Why did we choose Fly.io?" |
| People finder | "Who handles DevOps?" |
| Runbooks | "What do we do when the DB goes down?" |
| Cross-project | "Which projects use Stripe?" |
- Per-user memory spaces — personal context alongside shared team context
- Memory ownership — tag memories by who created them
- Access control — read-only vs read-write roles
- Audit log — see who saved or changed what and when
- Build On Top — more on extending Aperio
- Custom Tools — adding your own MCP tools
✨ Aperio • Developed by (BG) Team • 💬 Join Discussion
✨ Aperio • v0.67.5 • 💬 Join Discussion
| ✨ Aperio · Quick Links |
|---|
| 🏠 Home |
| 📖 README |
| 🛠️ Troubleshooting |
| 🚀 Roadmap |
| 🔸 FAQ |
| 🥇 LEADERBOARD |
Getting Started
Core Features
Build On Top