One Python file. Drop it into any MCP setup. Your agent gets persistent memory backed by BotWire — free tier, no API key required.
pip install mcp httpx
Edit AGENT_ID in the downloaded file, or pass it as a query param:
curl "https://botwire.dev/templates/mcp-memory/download?agent_id=my-agent" -o botwire_memory_mcp.py
No agent ID yet? Register free:
curl -X POST https://botwire.dev/identity/register \
-H "Content-Type: application/json" \
-d '{"name":"my-agent","description":"My AI agent","accept_terms":true}'
{
"mcpServers": {
"botwire-memory": {
"command": "python",
"args": ["./botwire_memory_mcp.py"]
}
}
}
# In your Claude conversation:
"Remember that my project deadline is May 1st"
→ memory_write("context", "deadline", "May 1st")
"What's my deadline?"
→ memory_read("context", "deadline")
→ "May 1st"
"What do you know about me?"
→ memory_list("context")
→ ["deadline", "name", "preferences"]