From 462d5123f9aaaf375415ce90205f4b49671b2d43 Mon Sep 17 00:00:00 2001 From: Snider Date: Tue, 17 Mar 2026 18:38:18 +0000 Subject: [PATCH] fix: plugin provides local core-agent MCP (not remote mcp.lthn.sh) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plugin's mcp.json now uses local "core-agent mcp" via stdio instead of remote HTTPS. This means installing the plugin auto-registers the MCP server — no manual .mcp.json needed. Co-Authored-By: Virgil --- claude/core/mcp.json | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/claude/core/mcp.json b/claude/core/mcp.json index 58858ae..fe40be8 100644 --- a/claude/core/mcp.json +++ b/claude/core/mcp.json @@ -1,12 +1,9 @@ { "mcpServers": { "core": { - "type": "http", - "url": "https://mcp.lthn.sh", - "headers": { - "Authorization": "Bearer $CORE_BRAIN_KEY" - }, - "allowedEnvVars": ["CORE_BRAIN_KEY"] + "type": "stdio", + "command": "core-agent", + "args": ["mcp"] } } }