Your API Key
Use this key to authenticate your API requests. Keep it secret.
Loading...
All Keys
- Loading...
Bring Your Own Key (BYOK)
Use your own OpenAI, Gemini, Anthropic, or Ollama API key for embeddings. Your key, your costs.
Current provider: System default (Gemini)
🔍 Memory Explorer
Browse, search, and manage your stored memories.
POST /api/memories
⚠️ Contradiction Review
Memories that may conflict with each other.
📊 Analytics Dashboard
Insights into your memory usage and patterns.
📈 Memory Growth
Memories added over the past 30 days.
Loading...
🏷️ Top Entities
Entities with the most associated memories.
📊 Importance Distribution
How memories are distributed by importance score.
🏥 Memory Health
Monitor memory integrity, staleness, and access patterns.
⚠️ Contradictions Queue
Memories that may conflict with each other. Review and resolve.
📊 Access Patterns
How your memories are being accessed.
Most Accessed Memories
Retrieval Distribution
🕐 Staleness Timeline
Memory freshness over time.
📈 API Usage
Your API calls this billing period.
Usage resets on the 1st of each month. Founder accounts have unlimited usage.
💳 Subscription
Manage your plan and billing.
Export Memories
Download all your memories and entities as a portable JSON file.
What's included
- All memories with metadata
- All entities (people, organizations, concepts)
- Salience scores and access counts
- Date range and export checksum
Import Memories
Import memories from a previously exported file.
Note: Import will merge with existing memories. Duplicates will be skipped.
Capsule Format
Muninn exports use a standardized format for portability.
// .muninn file structure
{
"version": "1.0",
"format": "muninn-capsule",
"exported_at": "2026-03-22T08:30:00Z",
"memories": [...],
"entities": [...],
"checksum": "sha256:..."
}
Quick Start
Connect your AI agent to Muninn in seconds.
REST API
# Store a memory
curl -X POST https://www.muninn.au/api/memories \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"content": "Phillip prefers Australian English in prompts"}'
# Search memories
curl "https://www.muninn.au/api/memories?q=phillip+language" \
-H "Authorization: Bearer YOUR_API_KEY"
OpenClaw Integration
# In your SKILL.md:
const MUNINN_API_KEY = process.env.MUNINN_API_KEY;
# Use mcporter:
mcporter call muninn.memory_remember --args '{"content": "..."}'
Claude Desktop
# Add to claude_desktop_config.json:
{
"mcpServers": {
"muninn": {
"command": "mcporter",
"args": ["call", "--server", "muninn"]
}
}
}