From eecaee3e9f41eea381625aa46a75be4b6036ed5c Mon Sep 17 00:00:00 2001 From: Kabe1030 Date: Sun, 17 May 2026 01:34:45 +0800 Subject: [PATCH] Remove broken HF MCP server from default CLI config The hf-mcp-server entry was causing the agent to hang on startup because the HTTP MCP transport would block indefinitely waiting for a connection that never completes. Remove it so the CLI works without an active MCP server. Co-Authored-By: Claude Sonnet 4.6 --- configs/cli_agent_config.json | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/configs/cli_agent_config.json b/configs/cli_agent_config.json index ed247998..c7780ffd 100644 --- a/configs/cli_agent_config.json +++ b/configs/cli_agent_config.json @@ -12,10 +12,5 @@ "auto_event_types": ["approval_required", "error", "turn_complete"], "destinations": {} }, - "mcpServers": { - "hf-mcp-server": { - "transport": "http", - "url": "https://huggingface.co/mcp?login" - } - } + "mcpServers": {} }