Add mcp config for windows and claude#2097
Add mcp config for windows and claude#2097cb-github-robot merged 1 commit intocloud-barista:mainfrom
Conversation
Signed-off-by: seokho-son <shsongist@gmail.com>
There was a problem hiding this comment.
Pull Request Overview
This PR reorganizes the MCP (Model Context Protocol) configuration documentation to provide platform-specific setup instructions for Windows and Claude desktop integration. The changes improve clarity by separating configurations for different operating systems and execution environments.
Key changes:
- Reorganized configuration examples by platform (WSL, Windows native, Linux/macOS)
- Added Windows-specific environment variables for proper encoding
- Updated file paths to use Windows-style paths in the native Windows example
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
| "args": [ | ||
| "bash", | ||
| "-c", | ||
| "/home/username/.local/bin/uv run --with fastmcp /path/to/cb-tumblebug/src/interface/mcp/mcp-simple-proxy.py" |
There was a problem hiding this comment.
The path '/home/username/.local/bin/uv run --with fastmcp /path/to/cb-tumblebug/src/interface/mcp/mcp-simple-proxy.py' appears to be incorrectly formatted. It should be split into the uv command and its arguments rather than being a single path string.
| "/home/username/.local/bin/uv run --with fastmcp /path/to/cb-tumblebug/src/interface/mcp/mcp-simple-proxy.py" | |
| "/home/username/.local/bin/uv", | |
| "run", | |
| "--with", | |
| "fastmcp", | |
| "/path/to/cb-tumblebug/src/interface/mcp/mcp-simple-proxy.py" |
| "fastmcp", | ||
| "/path/to/cb-tumblebug/src/interface/mcp/mcp-simple-proxy.py" | ||
| ] | ||
| "C:\\Users\\admin\\Documents\\mcp-simple-proxy.py" |
There was a problem hiding this comment.
The Windows path should use forward slashes or properly escaped backslashes in JSON. Consider using 'C:/Users/admin/Documents/mcp-simple-proxy.py' or ensure proper escaping with double backslashes.
|
/approve |
No description provided.