From db9cd0167af29dace157dd32cb771bf74b43abae Mon Sep 17 00:00:00 2001 From: Claude Lin & Lay Date: Tue, 28 Apr 2026 23:16:11 +0900 Subject: [PATCH] feat(mcp): add alwaysLoad: true to plugin .mcp.json MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add plugin-root .mcp.json shipping the github-rag-mcp HTTP MCP server config with `alwaysLoad: true`. Claude Code v2.1.121 (released 2026-04-28) recognizes this option and skips tool-search deferral for the listed server, so RAG search tools stay always available without the per-turn ToolSearch round-trip. Claude Code v2.1.121 で導入された alwaysLoad オプションを利用し、 research 経路で常用する github-rag-mcp の tool を deferred 状態から ロードする 1 往復を毎ターン削減する。旧 Claude Code は未知 field を 無視するため後方互換性は維持される。 Closes #139 Co-Authored-By: Claude Opus 4.7 (1M context) --- .mcp.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .mcp.json diff --git a/.mcp.json b/.mcp.json new file mode 100644 index 0000000..2c06ada --- /dev/null +++ b/.mcp.json @@ -0,0 +1,10 @@ +{ + "mcpServers": { + "github-rag-mcp": { + "type": "http", + "url": "https://github-rag.smgjp.com/mcp", + "alwaysLoad": true, + "note": "GitHub RAG MCP. OAuth is required on first use." + } + } +}