From c6d0da3872da50bc15bbcc981ce007b50510ed81 Mon Sep 17 00:00:00 2001 From: Thomas Meckel Date: Wed, 11 Mar 2026 09:42:43 +0000 Subject: [PATCH] =?UTF-8?q?feat:=20=E2=9C=A8=20install=20jcodemunch-mcp=20?= =?UTF-8?q?and=20update=20mcp=20config?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Disable engram, sequential-thinking, and aleph MCP tools to optimize startup time and resource consumption. Add msdocs (remote) and jcodemunch (local) MCP configurations, all disabled. --- Dockerfile | 27 +++++++++++++++++++++++---- 1 file changed, 23 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 52f284d..4d3fbaf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -137,6 +137,8 @@ RUN <<'FOE' skill_name="changelog" python git-export.py https://github.com/sickn33/antigravity-awesome-skills/skills/changelog-automation "${skills_dir}/${skill_name}" --force + uv pip install --system jcodemunch-mcp + rm -f git-export.py cat >"${OPENCODE_CONFIG_DIR}/opencode.json" <<-'EOF' @@ -147,13 +149,13 @@ RUN <<'FOE' ], "mcp": { "engram": { + "type": "local", "command": [ "engram", "mcp", "--tools=agent" ], - "enabled": true, - "type": "local" + "enabled": false }, "sequential-thinking": { "type": "local", @@ -161,7 +163,8 @@ RUN <<'FOE' "bun", "x", "@modelcontextprotocol/server-sequential-thinking" - ] + ], + "enabled": false }, "aleph": { "type": "local", @@ -172,7 +175,23 @@ RUN <<'FOE' "any", "--tool-docs", "concise" - ] + ], + "enabled": false + }, + "msdocs": { + "type": "remote", + "url": "https://learn.microsoft.com/api/mcp", + "enabled": false + }, + "jcodemunch": { + "type": "local", + "command": [ + "jcodemunch-mcp", "--log-level", "DEBUG", "--log-file", "/home/bun/.local/share/opencode/log/jcodemunch.log" + ], + "environment": { + "JCODEMUNCH_SHARE_SAVINGS": "0" + }, + "enabled": false } } }