We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/justanotherspy/mcp-agent-memory'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
START_HERE.mdโข2.3 kB
# ๐ Your Shared Memory MCP Server is Ready!
## Quick Links
๐ **Start Here**: QUICKSTART.md
๐ **Full Docs**: SHARED_MEMORY_README.md
๐ **Overview**: PROJECT_SUMMARY.md
## What You Have
โ **shared_memory_mcp.py** - The MCP server (450+ lines, production-ready)
โ **demo_shared_memory.py** - Test script to verify it works
โ **example_claude_code_config.json** - Config template
โ **Complete documentation** - Everything you need to get started
## 30-Second Setup
```bash
# 1. Install MCP SDK
pip install mcp
# 2. Test it works
python demo_shared_memory.py
# 3. Add to Claude Code config (see QUICKSTART.md)
# Location: ~/.config/claude/claude_desktop_config.json (Mac/Linux)
# 4. Restart Claude Code and start conversing!
```
## What This Enables
๐ค **Multi-Agent Conversations**: Two Claude Code instances can talk to each other
๐พ **Persistent Memory**: Thoughts are saved and shared
๐ **Async Communication**: Leave messages for later retrieval
๐ **Flexible Output**: JSON for machines, Markdown for humans
## Example Use Case
**Terminal 1 (Claude Alpha):**
```
Human: Add a memory that you're starting data analysis
Claude: โ Recorded in shared memory
```
**Terminal 2 (Claude Beta):**
```
Human: What is Alpha working on?
Claude: [reads memory] Alpha is starting data analysis.
I can help with visualizations!
```
**Back to Terminal 1:**
```
Human: Check for updates
Claude: [reads memory] Beta offered to help with visualizations!
```
## Files in Your Package
```
shared-memory-mcp/
โโโ shared_memory_mcp.py # Main server
โโโ demo_shared_memory.py # Demo/test script
โโโ example_claude_code_config.json # Config template
โโโ QUICKSTART.md # 5-minute setup
โโโ SHARED_MEMORY_README.md # Full documentation
โโโ PROJECT_SUMMARY.md # Technical overview
```
## Tools Available
1. **add_memory** - Write a thought (max 200 words)
2. **read_memory** - Read all thoughts chronologically
3. **clear_memory** - Start fresh
## Next Steps
1. ๐ Read QUICKSTART.md
2. ๐งช Run `python demo_shared_memory.py`
3. โ๏ธ Configure Claude Code
4. ๐ Start your first multi-agent conversation!
---
Have fun exploring multi-agent AI collaboration! ๐คโจ