fix: correct crush.json paths and add missing MCP wrapper scripts

- Fixed incorrect path /KNEL/KNEL-AIMiddleware/ to /KNEL-AIMiddleware/
- Added discourse and penpot MCP configurations to crush.json
- Tracked 10 new wrapper scripts for pending MCP servers
- Added paperless-mcp and postizz-mcp Dockerfiles
- Updated JOURNAL.md with today's work entry

💘 Generated with Crush

Assisted-by: GLM-5 via Crush <crush@charm.land>
This commit is contained in:
Charles N Wyble
2026-02-19 10:59:32 -05:00
parent 55166db065
commit bc89169265
17 changed files with 449 additions and 163 deletions

View File

@@ -1683,3 +1683,51 @@ rm -rf vendor/*
- STATUS.md
---
## 2026-02-19
### Housekeeping: Fix crush.json Paths and Add Missing MCP Configurations
**Date/Time**: 2026-02-19 10:30:00 AM EST
**Work**: Configuration fix and cleanup
**What was done**:
1. **Fixed crush.json path mismatch**:
- Incorrect: `/home/charles/Projects/KNEL/KNEL-AIMiddleware/`
- Correct: `/home/charles/Projects/KNEL-AIMiddleware/`
- Applied via replace_all to fix all 27 occurrences
2. **Added missing MCP server configurations to crush.json**:
- discourse (mcp-discourse-wrapper.sh)
- penpot (mcp-penpot-wrapper.sh)
3. **Wrapper scripts now tracked** (10 new wrapper scripts):
- mcp-ansible-wrapper.sh
- mcp-discourse-wrapper.sh
- mcp-matomo-wrapper.sh
- mcp-nextcloud-wrapper.sh
- mcp-penpot-wrapper.sh
- mcp-postizz-wrapper.sh
- mcp-proxmox-wrapper.sh
- mcp-redmine-wrapper.sh
- mcp-snipeit-wrapper.sh
- mcp-terraform-wrapper.sh
4. **New Dockerfiles tracked**:
- dockerfiles/paperless-mcp/
- dockerfiles/postizz-mcp/
**Why**:
- Path mismatch would cause all MCP servers to fail in Crush
- Wrapper scripts need to be tracked in git for reproducibility
- Missing MCP configurations prevented Crush from using discourse and penpot servers
**Files Modified**:
- crush.json (path fix + added discourse, penpot)
**Files Added**:
- 10 wrapper scripts (mcp-*-wrapper.sh)
- dockerfiles/paperless-mcp/Dockerfile
- dockerfiles/postizz-mcp/Dockerfile
---