summaryrefslogtreecommitdiff
path: root/docs/mcp-server-complete.md
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-02-11 20:53:45 +0200
committerPaul Buetow <paul@buetow.org>2026-02-11 20:53:45 +0200
commita82d0b061a02fd395de293353386d0b16cbe6b18 (patch)
tree55ac689596267b43d5dbcdc608cfc23472c2faf8 /docs/mcp-server-complete.md
parent8312a19b4e1f9849aae9912433824b19e03a8daf (diff)
docs: update all paths to consolidated .local/hexai directory
Update all documentation to reflect new directory structure: - Cache: ~/.local/hexai/cache/ - State: ~/.local/hexai/state/ - Data: ~/.local/hexai/data/ Updated files: - README.md - docs/mcp-setup.md - docs/mcp-prompts.md - docs/mcp-managing-prompts.md - docs/mcp-features-summary.md - docs/mcp-automatic-backups.md - docs/mcp-server-complete.md Amp-Thread-ID: https://ampcode.com/threads/T-019c4e03-73db-70a2-ae27-3e1cc31d59c3 Co-authored-by: Amp <amp@ampcode.com>
Diffstat (limited to 'docs/mcp-server-complete.md')
-rw-r--r--docs/mcp-server-complete.md14
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/mcp-server-complete.md b/docs/mcp-server-complete.md
index aa7e043..5d8d7ca 100644
--- a/docs/mcp-server-complete.md
+++ b/docs/mcp-server-complete.md
@@ -16,7 +16,7 @@ The hexai-mcp-server is a **fully self-contained MCP server** that manages promp
- ✅ **Every write operation** creates a timestamped backup
- ✅ Backups created **before** changes (can always rollback)
- ✅ Keeps last **10 backups** automatically
-- ✅ Stored in `~/.local/share/hexai/prompts/backups/`
+- ✅ Stored in `~/.local/hexai/data/prompts/backups/`
- ✅ **Zero configuration** - works out of the box
### 3. No External Tools Required
@@ -151,7 +151,7 @@ Every operation automatically:
### Backup Files
```
-~/.local/share/hexai/prompts/backups/
+~/.local/hexai/data/prompts/backups/
├── user.jsonl.20260210-193422 ← Most recent
├── user.jsonl.20260210-192145
├── user.jsonl.20260210-190358
@@ -162,11 +162,11 @@ Every operation automatically:
```bash
# List backups
-ls -lht ~/.local/share/hexai/prompts/backups/
+ls -lht ~/.local/hexai/data/prompts/backups/
# Restore from backup
-cp ~/.local/share/hexai/prompts/backups/user.jsonl.20260210-193422 \
- ~/.local/share/hexai/prompts/user.jsonl
+cp ~/.local/hexai/data/prompts/backups/user.jsonl.20260210-193422 \
+ ~/.local/hexai/data/prompts/user.jsonl
# Restart MCP client
```
@@ -174,7 +174,7 @@ cp ~/.local/share/hexai/prompts/backups/user.jsonl.20260210-193422 \
## 📁 File Structure
```
-~/.local/share/hexai/prompts/
+~/.local/hexai/data/prompts/
├── default.jsonl # Built-in prompts (7 prompts)
├── user.jsonl # Your custom prompts
└── backups/ # Automatic backups (10 most recent)
@@ -234,7 +234,7 @@ cp ~/.local/share/hexai/prompts/backups/user.jsonl.20260210-193422 \
### Prompts Directory
-**Default**: `~/.local/share/hexai/prompts/`
+**Default**: `~/.local/hexai/data/prompts/`
**Override** (priority order):
1. CLI flag: `--prompts-dir /path/to/prompts`