Contribute to Vizro-MCP
We are always happy to receive contributions to Vizro and Vizro-MCP!
To contribute to Vizro-MCP you'll need to follow the same contribution process as for the parent Vizro project.
How to use a developer build of Vizro-MCP
If you are a developer, or if you are running Vizro-MCP from source, you need to clone the Vizro GitHub repository.
To configure the Vizro-MCP server details:
Add the following to your MCP configuration:
{
"mcpServers": {
"vizro-mcp": {
"command": "uv",
"args": [
"run",
"--directory",
"<PATH TO VIZRO>/vizro-mcp/",
"vizro-mcp"
]
}
}
}
Replace <PATH TO VIZRO> with the actual path to the clone of the Vizro repository.
You may also need to provide the full path to your uv executable, so instead of "uv" you would use something like "/Users/<your-username>/.local/bin/uv". To discover the path of uv on your machine, in your terminal app, type which uv.