.Mcp.Json Rule
{ "mcpServers": { "code-understanding": { "command": "uvx", "args": [ "code-understanding-mcp-server", "--cache-dir", "<your_root_dir>/custom-cache-dir", // Override repository cache location "--max-cached-repos", "20" // Override maximum number of cached repos. Defaults to 10. ], "env": {...
{ "mcpServers": { "code-understanding": { "command": "uvx", "args": [ "code-understanding-mcp-server", "--cache-dir", "<your_root_dir>/custom-cache-dir", // Override repository cache location "--max-cached-repos", "20" // Override maximum number of cached repos. Defaults to 10. ], "env": { "GITHUB_PERSONAL_ACCESS_TOKEN": "your-token-here" // Only required if you need to access private GitHub repositories for analysis. } }, "mermaid_image_generator": { "command": "uvx", "args": [ "mcp_mermaid_image_gen" ] }, "Conduit": { "command": "mcp-server-conduit", "args": [] // Note: Conduit requires manual initialization before use: // 1. Install: pipx install conduit-connect // 2. Initialize: conduit --init // 3. Configure: Edit ~/.config/conduit/config.yaml (or %APPDATA%\conduit\config.yaml on Windows) // 4. Add your Atlassian site credentials to config.yaml // See https://github.com/codingthefuturewithai/conduit for details } } }