Your AI Agent’s Long-Term Memory
Remember every conversation. Search instantly. Never repeat yourself. Bossa gives your AI agents a persistent filesystem to store and retrieve context across sessions—just like Claude Code and Manus do.Install:
pip install bossa-memory · Base URL: https://bossamemory.com · No infrastructure to run. Sign up, get an API key, start building.The Problem: Agents Forget Everything
Every time your agent starts, it’s like Groundhog Day:- Re-learning user preferences every session
- Asking the same questions over and over
- No memory of previous work or context
- RAG pipelines that are complex and brittle
Why Filesystem Over RAG?
Leading agent platforms like Claude Code and Manus chose filesystems over traditional RAG pipelines. Here’s why:| Filesystem (Bossa) | Traditional RAG |
|---|---|
grep "user preferences" | Tune embeddings, pray it works |
| Directory structure = organization | Flat vector space |
| Works like CLI tools agents know | New abstractions to learn |
Debuggable with ls, cat | Black box retrieval |
| No embedding drift | Constant re-indexing |
Why Bossa?
Feels Like Local Files
Powered by Postgres
- Full-text search with trigrams
- ACID transactions
- JSON storage
- Enterprise-ready
Plug-and-Play
| Platform | How to connect |
|---|---|
| Terminal | export BOSSA_API_KEY=sk-xxx then bossa files ls / |
| LangChain | Add Bossa MCP server to MultiServerMCPClient |
| Claude / Cursor | Add MCP server URL + API key in headers |
Your Agent’s Personal File System
Each agent gets its own space, scoped by API key. No cross-tenant leakage.How Does Bossa Help Me?
Coding Assistant
Remember project context, tech stack, and conventions across sessions.
Multi-Agent Team
Multiple agents share one workspace. Handoffs, shared state, no duplicate work.
Context Engineering
Discover what’s relevant with ls/grep, pull only what you need. Fewer tokens.
Quick start
Sign up
Create an account via the CLI
Create workspace & key
Connect
Make your first request via MCP or REST
Docs MCP
Give your AI assistant (Cursor, VS Code, Claude) direct access to the Bossa documentation. Use the contextual menu at the top of any page for one-click Connect to Cursor or Connect to VS Code — or follow the manual setup instructions. Add Docs to Your IDE →Documentation
Getting Started
Sign up, API key, first request.
Why Filesystem?
Filesystem vs RAG — why we chose this approach.
Dynamic Context Discovery
How Bossa fits the context-engineering pattern used by Cursor and LangChain.
Docs as MCP
Add Bossa docs to Cursor, VS Code, Claude.
CLI Reference
Auth, workspaces, keys, files.
MCP Integration
Claude, Cursor, LangChain.
REST API
Endpoint reference.
Agent Integration
Examples and patterns.
Use Cases
Coding assistant, multi-agent team, context engineering.
Self-Hosting
Run on your infrastructure.