Installation & Setup
MEMANTO requires a Moorcheh API key to function. This guide walks you through setup in minutes.Prerequisites
- Python 3.10+ (for CLI and local server)
- Docker (optional, for containerized deployment)
- Moorcheh API key (free tier available)
Step 1: Get a Moorcheh API Key
MEMANTO relies on Moorcheh.ai for semantic search. You need an API key to get started.Create Your API Key
- Go to https://console.moorcheh.ai/api-keys
- Sign up or log in (free tier available)
- Click “Create New API Key”
- Copy the key
- Save it somewhere safe—never commit to git
Free Tier Benefits
- 500 monthly credits = ~100,000 operations
- No credit card required
- No indexing delays (instant semantic search)
- Enough for heavy development (multiple agents continuously)
Step 2: Install MEMANTO
Option A: CLI Installation (Recommended)
Install the MEMANTO CLI to interact with memory operations:Option B: From Source
For development or customization:Option C: Docker Installation
Build a containerized MEMANTO server:Step 3: Configure Your API Key
Interactive Setup (Recommended)
- Enter your Moorcheh API key
- Configure optional settings (schedule time for daily summaries, etc.)
~/.memanto/config.json (secure, not in git).
Manual Configuration
If you prefer to skip the interactive setup:Step 4: Verify Installation
Test CLI Setup
- API key validity ✓
- Moorcheh connectivity ✓
- Configuration ✓
Test API Server
Start the local API server:Access Web Dashboard
Once the server is running, open the web UI:http://localhost:3000 (or similar) where you can:
- View all agents
- Create/activate agents
- Store and retrieve memories
- Monitor sessions
Step 5: Create Your First Agent
Troubleshooting
”API key not found” error
”Moorcheh connection failed” error
”Port 8000 already in use” error
Use a different port:“Module not found” error
Reinstall MEMANTO:Next Steps
- Quick Demo: Quick Start
- Create Your First Agent: First Agent Setup
- Use CLI: CLI Overview
- Integrate Programmatically: REST API
All set! You’re ready to start building memory-enabled agents.