From 9fab42d31f3ba3652830cd2318f52c86fa51ce0e Mon Sep 17 00:00:00 2001 From: allaun Date: Sat, 20 Jun 2026 16:21:53 -0500 Subject: [PATCH] fix(opencode): move MCP config from global to project config opencode rejects the mcpServers key in ~/.config/opencode/opencode.jsonc. Remove it from global config and add consensus as a remote MCP server in the project-level opencode.json under the correct mcp key. --- opencode.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/opencode.json b/opencode.json index cf1e3907..b1fa0eed 100644 --- a/opencode.json +++ b/opencode.json @@ -61,6 +61,11 @@ "5-Applications/tools-scripts/mcp/token_saver_mcp.py" ], "enabled": true + }, + "consensus": { + "type": "remote", + "url": "https://mcp.consensus.app/mcp", + "enabled": true } }, "$schema": "https://opencode.ai/config.json"