From 3ad26ba0102514824f7a8d430e82c0e2e2fc7522 Mon Sep 17 00:00:00 2001 From: cproudlock Date: Thu, 30 Jul 2026 14:30:12 -0400 Subject: [PATCH] export-github: exclude mcp/ from public publication The MCP server README names Claude Desktop / Claude Code (it is an MCP server for those clients), which trips the scrub gate. It is a standalone local tool distributed via pxe-images/mcp/ + setup-mcp.cmd, not part of the shipped product, so exclude it from the public repo like docs/ and tools/. --- tools/export-github.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/export-github.sh b/tools/export-github.sh index 57ba985..c884630 100755 --- a/tools/export-github.sh +++ b/tools/export-github.sh @@ -35,6 +35,7 @@ rsync -a --delete \ --exclude '.gitea' \ --exclude 'docs' \ --exclude 'tools' \ + --exclude 'mcp' \ --exclude 'start-api.sh' \ --exclude 'start-ui.sh' \ --exclude 'CLAUDE.md' \