Best for
- Developers who want to visualize complex codebases
- Teams using AI coding assistants and wanting to review generated code
- Developers needing quick architecture and process diagrams
- Users concerned about local data processing and privacy
Mindpilot MCP provides useful visualization for AI coding assistants, enabling local Mermaid diagram generation. It works well with multi-client sharing and export features, but anonymous usage tracking and local server may require caution.
Mindpilot MCP is an MCP server for generating and rendering Mermaid diagrams. It enables your AI coding assistant to create on-demand architecture, code, and process diagrams displayed in a local web app, allowing you to visually explore and understand codebases. All diagrams are processed locally and never sent to the cloud. It supports multiple clients sharing the same diagram collection and exporting diagrams as vector images.
### Claude Code
Run claude mcp add mindpilot -- npx @mindpilot/mcp@latest
### Cursor
Under Settings > Cursor Settings > MCP, add a global MCP server with the following configuration:
{
"mcpServers": {
"mindpilot": {
"command": "npx",
"args": ["@mindpilot/mcp@latest"]
}
}
}### VS Code
Follow the [VS Code MCP guide](https://code.visualstudio.com/docs/copilot/chat/mcp-servers) to enable MCP, then add to settings json:
{
"mcp": {
"servers": {
"mindpilot": {
"type": "stdio",
"command": "npx",
"args": ["@mindpilot/mcp@latest"]
}
}
}
}### Windsurf
Under Settings > Windsurf Settings > Manage Plugins, view raw config and configure in the mcpServers object.
### Zed
In the AI Thread panel, click the three dots ..., then select Add Custom Server..., enter npx @mindpilot/mcp@latest in the command field.
{
"mcpServers": {
"mindpilot": {
"command": "npx",
"args": [
"@mindpilot/mcp@latest"
]
}
}
}