From b77132a05f3989f21185369252ebb63a6432986f Mon Sep 17 00:00:00 2001 From: aeneasr <3372410+aeneasr@users.noreply.github.com> Date: Wed, 4 Mar 2026 21:50:01 +0100 Subject: [PATCH] refactor(plugin): inline mcpServers config and remove .mcp.json Moves MCP server configuration from .mcp.json into plugin.json to prevent Claude Code from auto-loading it as a project-level MCP config when developing the plugin. Co-Authored-By: Claude Sonnet 4.6 --- .claude-plugin/plugin.json | 8 +++++++- .mcp.json | 8 -------- 2 files changed, 7 insertions(+), 9 deletions(-) delete mode 100644 .mcp.json diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index ec1dfcf..34f1832 100644 --- a/.claude-plugin/plugin.json +++ b/.claude-plugin/plugin.json @@ -16,5 +16,11 @@ "embeddings", "ollama", "rag" - ] + ], + "mcpServers": { + "lumen": { + "command": "${CLAUDE_PLUGIN_ROOT}/scripts/run.sh", + "args": ["stdio"] + } + } } diff --git a/.mcp.json b/.mcp.json deleted file mode 100644 index 3cd64c9..0000000 --- a/.mcp.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "mcpServers": { - "lumen": { - "command": "${CLAUDE_PLUGIN_ROOT}/scripts/run.sh", - "args": ["stdio"] - } - } -}