Create publication-quality statistical visualizations through natural language using Python's plotnine implementation of ggplot2's grammar of graphics.
Visualization Capabilities:
Multi-layer plots - Combine multiple geometries (scatter + trend lines, boxplots + jitter, etc.)
20+ geometry types - Points, lines, bars, histograms, boxplots, violins, density plots, heatmaps, and more
Grammar of graphics composition - Build plots using aesthetics, geometries, scales, themes, facets, coordinates, and statistical transformations
Multiple output formats - PNG, PDF, SVG with configurable dimensions and DPI
Data Handling:
Multiple data sources - Load from CSV, JSON, Parquet, Excel files, URLs, or inline JSON
12 data transformations - Filter, group_summarize, sort, select, rename, mutate, drop_na, fill_na, sample, unique, rolling, and pivot operations
Data preview - Inspect data structure, column types, statistics, and missing values before plotting
Smart Features:
9 pre-configured templates - Time series, scatter with trend, distribution comparison, and other common patterns
AI-powered recommendations - Analyzes data to suggest appropriate plot types
Smart error handling - Fuzzy matching suggests corrections for typos in column names, geometries, and themes
Batch processing - Create multiple plots in one operation
Configuration management - Export/import plot configurations as JSON files for reuse
Customization:
7 built-in themes - Gray, bw, minimal, classic, dark, light, void with extensive customization options
21 color palettes - Across 6 categories including colorblind-safe, scientific, categorical, corporate, sequential, and diverging
Flexible styling - Customize scales, labels, titles, subtitles, captions, facets, and coordinate systems
Enables creation of publication-quality statistical graphics using plotnine, Python's implementation of the grammar of graphics, with support for 20+ geometry types, multi-layer plots, theming, faceting, and statistical transformations.
Implements R's ggplot2 grammar of graphics paradigm in Python through plotnine, allowing composition of visualizations using aesthetics, geometries, scales, themes, facets, and coordinate systems.
Plotnine MCP Server
A Model Context Protocol (MCP) server that brings ggplot2's grammar of graphics to Python through plotnine, enabling AI-powered data visualization via natural language.
Create publication-quality statistical graphics through chat using plotnine's Python implementation of R's beloved ggplot2. This modular MCP server allows Claude and other AI assistants to generate highly customizable visualizations by composing layers through the grammar of graphics paradigm.
Features
Core Visualization
🎨 Multi-Layer Plots: Combine multiple geometries in a single plot (scatter + trend lines, boxplots + jitter, etc.)
Grammar of Graphics: Compose plots using aesthetics, geometries, scales, themes, facets, and coordinates
20+ Geometry Types: Points, lines, bars, histograms, boxplots, violins, and more
Multiple Data Sources: Load data from files (CSV, JSON, Parquet, Excel), URLs, or inline JSON
Multiple Output Formats: PNG, PDF, SVG with configurable dimensions and DPI
Smart Features (NEW!)
📋 9 Plot Templates: Pre-configured templates for common patterns (time series, scatter with trend, distribution comparison, etc.)
🤖 AI Template Suggestions: Analyzes your data and recommends appropriate plot types
🎨 21 Color Palettes: Colorblind-safe, scientific, categorical, corporate, sequential, and diverging palettes
📊 Data Preview: Inspect data before plotting with comprehensive summaries
🎯 Smart Error Messages: Fuzzy matching suggests corrections for typos in column names, geom types, and themes
💾 Config Export/Import: Save and reuse plot configurations as JSON files
Data Manipulation (NEW!)
🔄 12 Data Transformations: filter, group_summarize, sort, select, rename, mutate, drop_na, fill_na, sample, unique, rolling, pivot
⚡ Batch Processing: Create multiple plots in one operation
🔗 Chained Transforms: Apply multiple transformations in sequence
Theming & Customization
Flexible Theming: Built-in themes with extensive customization options
Statistical Transformations: Add smoothing, binning, density estimation, and summaries
Faceting: Split plots by categorical variables using wrap or grid layouts
Installation
1. Clone or download this repository
2. Install dependencies
Using pip:
For full functionality (parquet and Excel support):
3. Configure Your MCP Client
Claude Desktop
Add the server to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
If you installed in a virtual environment, use the full path to python:
Cursor
Add to your Cursor settings by opening the command palette (Cmd/Ctrl+Shift+P) and searching for "Preferences: Open User Settings (JSON)". Add:
Or configure via .cursor/mcp.json in your project:
VSCode (with Cline/Roo-Cline)
Add to your VSCode MCP settings file:
macOS/Linux: ~/.config/Code/User/globalStorage/rooveterinaryinc.roo-cline/settings/cline_mcp_settings.json
Windows: %APPDATA%\Code\User\globalStorage\rooveterinaryinc.roo-cline\settings\cline_mcp_settings.json
For other MCP clients in VSCode, consult their specific documentation for MCP server configuration.
4. Restart Your Application
Restart Claude Desktop, Cursor, or VSCode for the changes to take effect. The plotnine MCP server should now be available!
Usage
Basic Example
Advanced Example
Available Tools (11 Total)
Core Tools
create_plot
Create a plotnine visualization with full customization.
Required Parameters:
data_source: Data source configurationaes: Aesthetic mappings (column names)geomorgeoms: Geometry specification(s)
Optional Parameters:
scales: Array of scale configurationstheme: Theme configurationfacets: Faceting configurationlabels: Plot labels (title, x, y, caption, subtitle)coords: Coordinate system configurationstats: Statistical transformationstransforms: Data transformations (NEW!)output: Output configuration (format, size, DPI, directory)
list_geom_types
List all 20+ available geometry types with descriptions.
Data Tools (NEW!)
preview_data
Preview and inspect data before creating plots. Returns dataset shape, column types, first rows, statistics, and missing values.
Parameters:
data_source: Data source configurationrows: Number of rows to preview (default: 5)
Template Tools (NEW!)
list_plot_templates
List all 9 available plot templates with descriptions:
time_series
scatter_with_trend
distribution_comparison
category_breakdown
correlation_heatmap
boxplot_comparison
multi_line
histogram_with_density
before_after
create_plot_from_template
Create a plot using a predefined template. Just provide data and aesthetics; the template handles the rest.
Parameters:
template_name: Name of the templatedata_source: Data source configurationaes: Aesthetic mappingslabels: Optional labelsoutput: Optional output configoverrides: Optional overrides for template settings
suggest_plot_templates
Analyze your data and get AI-powered plot recommendations based on column types and optional goal.
Parameters:
data_source: Data source to analyzegoal: Optional goal (e.g., "compare distributions", "show trend")
Style Tools (NEW!)
list_themes
List all available themes for plot styling with descriptions and customization options.
list_color_palettes
List 21 color palettes across 6 categories:
Colorblind-safe (3 palettes)
Scientific (4 palettes)
Categorical (4 palettes)
Corporate (3 palettes)
Sequential (4 palettes)
Diverging (3 palettes)
Parameters:
category: Optional category filter
Configuration Tools
export_plot_config
Export plot configuration to JSON for reuse and sharing.
Parameters:
config: The plot configuration to exportfilename: Output filenamedirectory: Output directory (default: './plot_configs')
import_plot_config
Import and use a saved plot configuration with optional overrides.
Parameters:
config_path: Path to saved configurationoverrides: Optional parameter overrides
Batch Tools (NEW!)
batch_create_plots
Create multiple plots in one operation. Perfect for generating plots for all columns, pairwise comparisons, or different visualizations of the same data.
Parameters:
plots: Array of plot configurations
Geometry Types
point: Scatter plot points
line: Line plot connecting points
bar: Bar chart (counts by default)
col: Column chart (identity stat)
histogram: Histogram of continuous data
boxplot: Box and whisker plot
violin: Violin plot for distributions
area: Filled area under line
density: Kernel density plot
smooth: Smoothed conditional means
jitter: Jittered points (reduces overplotting)
tile: Heatmap/tile plot
text: Text annotations
errorbar: Error bars
hline/vline/abline: Reference lines
path: Path connecting points in order
polygon: Filled polygon
ribbon: Ribbon for intervals
Examples
Simple Scatter Plot
Line Plot with Theme
Faceted Boxplot
Multi-Layer Plot: Scatter + Smooth Trend
NEW! Layer multiple geometries to create complex visualizations:
Boxplot with Jittered Points
Show both distribution summary and individual data points:
Chat Examples
You can create plots through natural language:
"Create a histogram of the 'age' column from users.csv"
"Make a scatter plot with smooth trend line showing price vs size, colored by category"
"Plot a line chart from sales.csv with date on x-axis and revenue on y-axis, faceted by region, using a dark theme"
"Create a violin plot comparing distributions of test scores across different schools"
"Make a boxplot with individual points overlaid showing temperature by season"
"Create a scatter plot with a linear trend line for each category, showing the relationship between hours studied and test scores"
Using New Tools
"Preview the data from sales.csv before plotting"
"What themes are available?"
"Show me all available plot templates"
"Suggest appropriate plot types for my data"
"Create a time series plot using the template"
"List color palettes in the scientific category"
"Export this plot configuration so I can reuse it later"
"Load the plot config from my_config.json and use it with a different dataset"
"Create a plot from the saved configuration but change the theme to minimal"
"Create plots for each category in my dataset" (batch processing)
"Filter the data to show only active users, then create a histogram" (data transformations)
New Examples
Using Templates
Create a scatter plot with trend line using a template:
This automatically creates a plot with:
Scatter points (with transparency)
Linear regression line
Confidence interval
Minimal theme
Using Color Palettes
Data Transformations
This applies transformations before plotting:
Filter:
"quarter == 'Q4'"Group & summarize: by region, sum revenue
Plot: bar chart of results
Batch Processing
Configuration Options
Themes
Available base themes:
gray(default)bw(black and white)minimalclassicdarklightvoid
Scale Types
Positional: continuous, discrete, log10, sqrt, datetime
Color/Fill: gradient, discrete, brewer
Coordinate Systems
cartesian(default)flip(swap x and y)fixed(fixed aspect ratio)trans(transformed coordinates)
Output
By default, plots are saved to ./output directory as PNG files with 300 DPI. You can customize:
format: png, pdf, svg
filename: Custom filename (auto-generated by default)
width/height: Dimensions in inches
dpi: Resolution for raster formats
directory: Output directory path
Troubleshooting
"Module not found" errors
Ensure you've installed the package:
Parquet/Excel support
Install optional dependencies:
"Cannot find data file"
Use absolute paths or paths relative to where Claude Desktop is running.
Plot not rendering
Check that:
Column names in
aesmatch your dataData types are appropriate for the geometry
Required aesthetics are provided (e.g.,
xandyfor most geoms)
Development
Running tests
Code formatting
License
MIT
Contributing
Contributions welcome! Please open an issue or submit a pull request.