# MemQ MCP Starter

Minimal MCP memory setup for proving that an AI agent can save a decision, restart, and recall it from MemQ.

## 10-minute setup

1. Create a MemQ API key in Billing Manager.
2. Copy `.env.example` to `.env` and set `MEMQ_API_KEY`.
3. Copy `.mcp.example.json` into your MCP-capable editor config.
4. Restart the editor.
5. Run the smoke path in `scripts/smoke-continuity.sh`.

## What this proves

- The MemQ MCP endpoint is reachable.
- The API key is supplied through an environment variable.
- A memory can be saved in one session.
- A later recall can find the saved decision.

## Files

- `.mcp.example.json` - generic Streamable HTTP MCP config.
- `.env.example` - local environment variables, no secrets.
- `examples/save-memory/request.json` - JSON-RPC request shape for saving memory.
- `examples/recall-memory/request.json` - JSON-RPC request shape for recall.
- `scripts/smoke-continuity.sh` - save -> new request -> recall smoke test.
