# Does Open Source by McKinsey have an MCP server?

**Yes — Official.** Open Source by McKinsey maintains an official MCP server.

## Facts

- Verdict: Official (Yes)
- Access: Local server — Runs on your machine over stdio, launched by your MCP client.
- Repository: [mckinsey/vizro](https://github.com/mckinsey/vizro) — ★ 3.8k, last push 2026-08-11, Apache-2.0
- Maintainer: Open Source by McKinsey
- Language: Python
- Category: [Data Science Tools](https://mcpyet.com/category/data-science-tools/)
- GitHub data refreshed: 2026-08-11 (re-checked every 6 hours)

## What it does

> Vizro is a low-code toolkit for building high-quality data visualization apps.
> — how [mckinsey/vizro](https://github.com/mckinsey/vizro) describes itself

Project site: <https://vizro.readthedocs.io/en/stable/>

## The receipts

- **Official repository:** [mckinsey/vizro](https://github.com/mckinsey/vizro) — ★ 3.8k, pushed 2026-08-11, Apache-2.0 (active)

## How to connect it

Runs on your machine over stdio, launched by your MCP client.

### Claude Code

```sh
claude mcp add mckinsey -- npx -y <package-from-readme>
```

Swap in the exact package and flags from the repo README — most servers need an API key passed as an environment variable. Add `--scope user` to make it available in every project.

### Claude Desktop

Open **Settings → Developer → Edit Config** and add the server to `claude_desktop_config.json`, then restart Claude Desktop:

```json
{
  "mcpServers": {
    "mckinsey": {
      "command": "npx",
      "args": [
        "-y",
        "<package-from-readme>"
      ],
      "env": {
        "API_KEY": "…"
      }
    }
  }
}
```

### Cursor

Add to `.cursor/mcp.json` in your project, or `~/.cursor/mcp.json` for every project:

```json
{
  "mcpServers": {
    "mckinsey": {
      "command": "npx",
      "args": [
        "-y",
        "<package-from-readme>"
      ],
      "env": {
        "API_KEY": "…"
      }
    }
  }
}
```

### VS Code

Add to `.vscode/mcp.json`, then pick the server from Copilot's agent-mode tools menu:

```json
{
  "servers": {
    "mckinsey": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "<package-from-readme>"
      ]
    }
  }
}
```

### ChatGPT

ChatGPT connects to **remote servers only**, and this one runs on your machine. Either expose it through an MCP gateway that gives it a public URL, or use a client with native local support (Claude or Cursor).

## How we know

Verdict derived by matching the Open Source by McKinsey organization against its GitHub presence and cross-checking against published MCP server lists.

- GitHub data refreshed 2026-08-11, then every 6 hours.
- Corrections: hello@mcpyet.com.

## Also in Data Science Tools

- [MigoXLab](https://mcpyet.com/mcp/dataeval.md) — Official (Yes)
- [optuna](https://mcpyet.com/mcp/optuna.md) — Official (Yes)
- [HumanSignal](https://mcpyet.com/mcp/humansignal.md) — Official (Yes)
- [GrowthBook](https://mcpyet.com/mcp/growthbook.md) — Official (Yes)

---

Source: https://mcpyet.com/mcp/mckinsey/ — data refreshed 2026-08-11
