[MCP] How to configure Code Mode MCP #11622
Answered
by
dannykorpan
dannykorpan
asked this question in
MCP | 模型上下文协议
-
|
Hi, I've been trying for several hours to configure Code Mode MCP (https://github.com/universal-tool-calling-protocol/code-mode), but I can't get it to work. Any ideas? I'm using the latest Cherry Studio 1.7.1. Assistant configuration with enabled code-mode MCP My .utcp_config.json |
Beta Was this translation helpful? Give feedback.
Answered by
dannykorpan
Dec 1, 2025
Replies: 1 comment 4 replies
-
|
Can it work properly on the chat page? |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment



Okay, I figured out that it has something to do with the path in the environment variable
✅ Working (folder without spaces)
UTCP_CONFIG_FILE=/Users/dannykorpan/.utcp_config.json
❌ Not working
UTCP_CONFIG_FILE="/Users/dannykorpan/syncthing/Meine Bibliothek/Code-Mode-MCP/.utcp_config.json"
or
UTCP_CONFIG_FILE='/Users/dannykorpan/syncthing/Meine Bibliothek/Code-Mode-MCP/.utcp_config.json'
❌ Also not working if I escape special characters
UTCP_CONFIG_FILE=/Users/dannykorpan/syncthing/Meine\ Bibliothek/Code-Mode-MCP/.utcp_config.json
or
UTCP_CONFIG_FILE="/Users/dannykorpan/syncthing/Meine\ Bibliothek/Code-Mode-MCP/.utcp_config.json"
or
UTCP_CONFIG_FILE='/Users/dannykorpan/syncthing/Meine\ Bibl…