MrUnreal/codemind
Platform-specific configuration:
{
"mcpServers": {
"codemind": {
"command": "npx",
"args": [
"-y",
"codemind"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
> Give GitHub Copilot memory across all your projects
[](https://github.com/MrUnreal/codemind/actions) [](https://www.python.org/downloads/) [](LICENSE)
CodeMind is an MCP server that gives GitHub Copilot 20 specialized tools for understanding your codebase.
<!-- mcp-name: io.github.MrUnreal/codemind -->
---
Without it:
With it:
---
1. Install the package
pip install mcp-codemind2. Configure VS Code
Add to .vscode/settings.json:
{
"mcp.servers": {
"codemind": {
"command": "python",
"args": ["-m", "codemind"]
}
}
}3. Reload
Press Ctrl+Shift+P โ "Developer: Reload Window"
Done! ๐
---
1. Clone and install
git clone https://github.com/MrUnreal/codemind.git
cd codemind
pip install -r requirements.txt2. Configure VS Code
Add to your VS Code settings (Ctrl+Shift+P โ "Preferences: Open User Settings (JSON)"):
{
"mcp.servers": {
"codemind": {
"command": "python",
"args": ["/full/path/to/codemind.py"],
"cwd": "${workspaceFolder}"
}
}
}Replace `/full/path/to/codemind.py` with the actual path to where you cloned CodeMind.
3. Reload VS Code
Press Ctrl+Shift+P โ "Developer: Reload Window"
4. Test It
Open Copilot Chat and try:
Does this project have authentication?Done! ๐
Need help? Check our [Tr
Loading reviews...