Plotnine MCP Server
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.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Plotnine MCP Servercreate a scatter plot of sales vs advertising spend with a trend line"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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
Related MCP server: MCP Data Visualization Server
Installation
1. Clone or download this repository
cd plotnine-mcp2. Install dependencies
Using pip:
pip install -e .For full functionality (parquet and Excel support):
pip install -e ".[full]"3. Configure Your MCP Client
Finding Your Installation Path
First, find where the plotnine-mcp command was installed:
which plotnine-mcpThis will show something like /path/to/python/bin/plotnine-mcp. Use this full path in the configurations below.
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
Recommended (using entry point):
{
"mcpServers": {
"plotnine": {
"command": "/path/to/your/python/bin/plotnine-mcp",
"args": []
}
}
}Alternative (using python -m):
{
"mcpServers": {
"plotnine": {
"command": "python",
"args": ["-m", "plotnine_mcp.server"]
}
}
}If you installed in a virtual environment, replace with the full path:
{
"mcpServers": {
"plotnine": {
"command": "/path/to/venv/bin/plotnine-mcp",
"args": []
}
}
}Cursor
Recommended approach: Configure via .cursor/mcp.json in your project:
{
"mcpServers": {
"plotnine": {
"command": "/path/to/your/python/bin/plotnine-mcp",
"args": []
}
}
}Alternative: Add to Cursor global settings by opening the command palette (Cmd/Ctrl+Shift+P) and searching for "Preferences: Open User Settings (JSON)":
{
"mcp.servers": {
"plotnine": {
"command": "/path/to/your/python/bin/plotnine-mcp",
"args": []
}
}
}Using python -m alternative:
{
"mcpServers": {
"plotnine": {
"command": "python",
"args": ["-m", "plotnine_mcp.server"]
}
}
}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
{
"mcpServers": {
"plotnine": {
"command": "/path/to/your/python/bin/plotnine-mcp",
"args": []
}
}
}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
Create a scatter plot from data.csv with x=age and y=heightAdvanced Example
Create a line plot from sales_data.csv showing:
- x: date, y: revenue, color by region
- Use a minimal theme with figure size 12x6
- Add a smooth trend line
- Facet by product category
- Label the plot "Q4 Sales Performance"
- Save as PDFAvailable 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
{
"data_source": {
"type": "file",
"path": "./data/iris.csv"
},
"aes": {
"x": "sepal_length",
"y": "sepal_width",
"color": "species"
},
"geom": {
"type": "point",
"params": {"size": 3, "alpha": 0.7}
}
}Line Plot with Theme
{
"data_source": {
"type": "url",
"path": "https://example.com/timeseries.csv"
},
"aes": {
"x": "date",
"y": "value",
"color": "category"
},
"geom": {
"type": "line",
"params": {"size": 1.5}
},
"scales": [
{
"aesthetic": "x",
"type": "datetime",
"params": {"date_breaks": "1 month"}
}
],
"theme": {
"base": "minimal",
"customizations": {
"figure_size": [12, 6],
"legend_position": "bottom"
}
},
"labels": {
"title": "Time Series Analysis",
"x": "Date",
"y": "Value"
}
}Faceted Boxplot
{
"data_source": {
"type": "inline",
"data": [
{"group": "A", "category": "X", "value": 10},
{"group": "A", "category": "Y", "value": 15},
{"group": "B", "category": "X", "value": 12}
]
},
"aes": {
"x": "group",
"y": "value",
"fill": "group"
},
"geom": {
"type": "boxplot"
},
"facets": {
"type": "wrap",
"facets": "~ category"
},
"theme": {
"base": "bw"
}
}Multi-Layer Plot: Scatter + Smooth Trend
NEW! Layer multiple geometries to create complex visualizations:
{
"data_source": {
"type": "file",
"path": "./data/measurements.csv"
},
"aes": {
"x": "time",
"y": "value",
"color": "sensor"
},
"geoms": [
{
"type": "point",
"params": {"size": 2, "alpha": 0.6}
},
{
"type": "smooth",
"params": {"method": "lm", "se": false}
}
],
"theme": {
"base": "minimal",
"customizations": {"figure_size": [12, 6]}
},
"labels": {
"title": "Sensor Readings with Trend Lines",
"x": "Time",
"y": "Measurement"
}
}Boxplot with Jittered Points
Show both distribution summary and individual data points:
{
"data_source": {
"type": "file",
"path": "./data/experiment.csv"
},
"aes": {
"x": "treatment",
"y": "response",
"fill": "treatment"
},
"geoms": [
{
"type": "boxplot",
"params": {"alpha": 0.7}
},
{
"type": "jitter",
"params": {"width": 0.2, "alpha": 0.5, "size": 1}
}
],
"theme": {
"base": "bw"
},
"labels": {
"title": "Treatment Effects with Individual Observations"
}
}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:
"Use the scatter_with_trend template to plot height vs weight from my data"This automatically creates a plot with:
Scatter points (with transparency)
Linear regression line
Confidence interval
Minimal theme
Using Color Palettes
"Create a bar chart colored using the colorblind-safe Okabe-Ito palette"Data Transformations
"Filter sales data to show only Q4, group by region, sum the revenue, and create a bar chart"This applies transformations before plotting:
Filter:
"quarter == 'Q4'"Group & summarize: by region, sum revenue
Plot: bar chart of results
Batch Processing
"Create histogram plots for all numeric columns in my dataset"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:
pip install -e .Parquet/Excel support
Install optional dependencies:
pip install -e ".[full]""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
pytestCode formatting
black src/
ruff check src/License
MIT
Contributing
Contributions welcome! Please open an issue or submit a pull request.
Resources
Available Tools
11 toolsbatch_create_plotsB
Create multiple plots in one batch operation.
Useful for:
Creating plots for all numeric columns in a dataset
Generating pairwise scatter plots
Creating plots for each category separately
Comparing different plot types
Each plot configuration is processed independently, and all plots are created in sequence.
| Name | Required | Description | Default |
|---|---|---|---|
| plots | Yes | Array of plot configurations (same structure as create_plot) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It adds some context: it describes the batch nature ('multiple plots in one batch operation'), processing behavior ('Each plot configuration is processed independently, and all plots are created in sequence'), and hints at use cases. However, it doesn't cover critical aspects like error handling, performance implications, or output format, leaving gaps for a mutation tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately sized and front-loaded, starting with the core purpose. The bulleted list is efficient for listing use cases, and the final sentence adds behavioral context without redundancy. However, some bullets could be more concise (e.g., 'Creating plots for each category separately' is slightly wordy), preventing a perfect score.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (batch mutation with no annotations and no output schema), the description is moderately complete. It covers purpose, usage examples, and processing behavior, but lacks details on error handling, output format, or performance considerations. This makes it adequate but with clear gaps for an agent to rely on.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, with the 'plots' parameter documented as 'Array of plot configurations (same structure as create_plot).' The description adds no additional parameter semantics beyond this, so it meets the baseline of 3 where the schema does the heavy lifting, but doesn't compensate with extra details like format examples or constraints.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Create multiple plots in one batch operation.' This specifies the verb ('create') and resource ('plots') with the distinguishing feature of batch processing. However, it doesn't explicitly differentiate from sibling tools like 'create_plot' beyond the batch aspect, which is why it doesn't reach a 5.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides a bulleted list of use cases (e.g., 'Creating plots for all numeric columns in a dataset'), which implies when to use this tool. However, it lacks explicit guidance on when NOT to use it or when to prefer alternatives like 'create_plot' for single plots, and it doesn't mention prerequisites or constraints, keeping it at an implied usage level.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_plotA
Create a plotnine visualization from data.
This tool allows you to create highly customizable plots using the grammar of graphics. You can specify data sources (file, URL, or inline), aesthetic mappings, geometries, scales, themes, facets, labels, and coordinate systems.
NEW: Multi-layer plots! Use 'geoms' array to combine multiple geometries in one plot.
Example usage:
Simple scatter plot: provide data_source, aes (x, y), and geom (type: "point")
Multi-layer plot: use geoms array with multiple geometries (e.g., point + smooth)
Line plot with custom theme: add theme config with base and customizations
Faceted plot: include facet config to split by categorical variables
Multiple scales: provide list of scale configs for x, y, color, etc.
All parameters support extensive customization through nested objects.
| Name | Required | Description | Default |
|---|---|---|---|
| data_source | Yes | Data source configuration (file, URL, or inline data) | |
| aes | Yes | Aesthetic mappings (column names from data) | |
| geom | No | Single geometry specification (use 'geoms' for multi-layer plots) | |
| geoms | No | Multiple geometry specifications for layered plots (e.g., scatter + smooth, boxplot + jitter) | |
| scales | No | Scale configurations for axes and aesthetics | |
| theme | No | Theme configuration | |
| facets | No | Faceting configuration | |
| labels | No | Plot labels | |
| coords | No | Coordinate system configuration | |
| stats | No | Statistical transformation configurations | |
| transforms | No | Data transformations to apply before plotting (filter, group_summarize, sort, select, rename, mutate, drop_na, fill_na, sample, unique, rolling, pivot) | |
| output | No | Output configuration |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It describes what the tool does but lacks critical behavioral details: it doesn't mention whether this creates a file output (implied by output parameter but not stated), what happens on errors, performance characteristics, or any permissions/authentication needs for a tool with 12 parameters and complex functionality.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately sized and well-structured with a clear opening statement followed by bulleted examples. However, the final sentence ('All parameters support extensive customization through nested objects.') is somewhat redundant given the detailed schema, and some example bullets could be more concise.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's high complexity (12 parameters, nested objects, no output schema), the description is adequate but incomplete. It explains the tool's purpose and provides usage examples, but lacks information about return values, error handling, or the relationship between parameters (e.g., geom vs geoms exclusivity). For such a complex tool without annotations or output schema, more comprehensive guidance would be helpful.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 100% schema description coverage, the baseline is 3. The description adds some value by explaining the purpose of parameters (e.g., 'specify data sources', 'aesthetic mappings', 'multi-layer plots') and providing usage examples that illustrate parameter combinations, but doesn't add significant semantic detail beyond what's already in the comprehensive schema descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool creates a plotnine visualization from data, specifying the verb ('create') and resource ('plotnine visualization'). It distinguishes from siblings by focusing on custom plot creation rather than batch operations, templates, or listings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for usage through example scenarios (simple scatter plot, multi-layer plot, etc.), but does not explicitly state when to use this tool versus alternatives like create_plot_from_template or batch_create_plots. It implies usage through examples but lacks explicit exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_plot_from_templateA
Create a plot using a predefined template.
Templates provide optimized configurations for common plot types:
time_series: Line plot with date formatting
scatter_with_trend: Points with regression line
distribution_comparison: Violin + jitter for group comparison
category_breakdown: Bar chart with categories
correlation_heatmap: Tile plot for correlations
boxplot_comparison: Boxplot with points overlay
multi_line: Multiple lines for trend comparison
histogram_with_density: Histogram with density curve
before_after: Side-by-side comparison
You only need to provide data and aesthetics; the template handles the rest. You can override any template settings if needed.
| Name | Required | Description | Default |
|---|---|---|---|
| template_name | Yes | Name of the template to use | |
| data_source | Yes | Data source configuration | |
| aes | Yes | Aesthetic mappings (must include required aesthetics for template) | |
| labels | No | Optional plot labels (title, x, y, etc.) | |
| output | No | Optional output configuration | |
| overrides | No | Optional overrides for template config (geoms, theme, etc.) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses that templates handle plot configurations and overrides are possible, which adds useful context about behavior. However, it doesn't mention permissions, rate limits, error conditions, or what happens when invalid data is provided, leaving gaps for a mutation tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured and front-loaded: the first sentence states the core purpose, followed by a bulleted list of template examples for clarity, and concluding with usage notes. Every sentence earns its place without redundancy, making it efficient and easy to parse.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (6 parameters, nested objects, no output schema, and no annotations), the description is fairly complete. It explains the template concept, lists examples, and covers key usage aspects. However, it lacks details on output format, error handling, or dependencies on other tools like 'list_plot_templates', leaving minor gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3. The description adds value by explaining that templates provide optimized configurations for specific plot types (listing 9 examples), clarifying what 'template_name' entails, and noting that only data and aesthetics need to be provided while overrides are optional. This enhances understanding beyond the schema's parameter descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool creates plots using predefined templates, specifying the verb 'create' and resource 'plot from template'. It distinguishes from siblings like 'create_plot' (generic) and 'batch_create_plots' (multiple) by emphasizing template-based creation with optimized configurations for common plot types.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use this tool: for creating plots with predefined optimized configurations, where you only need to provide data and aesthetics. It mentions you can override template settings if needed, but doesn't explicitly state when NOT to use it or name specific alternatives among siblings like 'create_plot' for custom plots.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
export_plot_configA
Export plot configuration to a JSON file for reuse.
This saves the exact configuration used to create a plot, allowing you to:
Recreate the same plot later
Share configurations with others
Version control your visualizations
Use as templates for similar plots
| Name | Required | Description | Default |
|---|---|---|---|
| config | Yes | The plot configuration to export (same structure as create_plot) | |
| filename | Yes | Output filename (e.g., 'my_plot_config.json') | |
| directory | No | Directory to save config file | ./plot_configs |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses that the tool saves configurations to a file for reuse, which implies a non-destructive, persistent storage action. However, it lacks details on permissions, error handling, or file format specifics (beyond JSON), leaving some behavioral aspects unclear.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the core purpose in the first sentence, followed by a bulleted list of use cases that are directly relevant and add value. Every sentence earns its place, with no wasted words, making it efficient and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (3 parameters, no output schema, no annotations), the description is mostly complete. It explains the purpose and use cases effectively, but could benefit from more behavioral details (e.g., file overwriting, error scenarios) to fully compensate for the lack of annotations and output schema.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all parameters thoroughly. The description adds no additional parameter details beyond what the schema provides, such as explaining the 'config' structure or 'directory' default behavior. This meets the baseline for high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('Export plot configuration to a JSON file') and resource ('plot configuration'), distinguishing it from sibling tools like 'import_plot_config' (which imports) and 'create_plot' (which creates plots). It provides a precise verb+resource combination that is not tautological with the tool name.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly lists use cases (recreating plots, sharing, version control, templates), which provides clear context for when to use this tool. However, it does not specify when NOT to use it or name explicit alternatives (e.g., 'create_plot_from_template' might be a related tool), missing full sibling differentiation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
import_plot_configA
Import and use a saved plot configuration.
Load a previously exported plot configuration and create a plot from it. You can optionally override specific parameters (like data_source) while keeping the rest of the configuration intact.
| Name | Required | Description | Default |
|---|---|---|---|
| config_path | Yes | Path to the saved configuration JSON file | |
| overrides | No | Optional overrides for config parameters (e.g., new data_source) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It adequately describes the core behavior (importing a saved config and creating a plot) and mentions the override capability. However, it lacks details about potential side effects (e.g., whether this creates persistent plots, requires specific permissions, or has rate limits), error conditions, or what the output looks like (though no output schema exists).
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is efficiently structured in three sentences: first states the overall purpose, second explains the core action, third adds important nuance about overrides. Every sentence earns its place with no wasted words, and key information is front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (importing configs with overrides) and no annotations or output schema, the description is adequate but has gaps. It covers the what and how but lacks details about behavioral implications (e.g., whether this is a read-only operation, what happens on failure, or format of created plots). For a tool that presumably creates visualizations, more context about outputs or constraints would be helpful.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents both parameters thoroughly. The description adds marginal value by mentioning 'optional overrides for config parameters (e.g., new data_source)', which provides a concrete example but doesn't significantly expand beyond what the schema provides. This meets the baseline for high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with specific verbs ('import and use', 'load', 'create a plot') and identifies the resource ('saved plot configuration'). It distinguishes from siblings like 'export_plot_config' (which saves configurations) and 'create_plot' (which creates from scratch rather than from saved configs).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use this tool: when you have a previously exported configuration and want to create a plot from it. It mentions the optional ability to override parameters, which adds useful guidance. However, it doesn't explicitly state when NOT to use it or name specific alternatives among the siblings (e.g., 'create_plot' for starting fresh, 'create_plot_from_template' for template-based creation).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_color_palettesB
List available color palettes with preview colors.
Palettes are organized by category:
colorblind_safe: Accessible palettes (Okabe-Ito, Tol)
scientific: Perceptually uniform (viridis, plasma, inferno, magma)
categorical: Distinct colors for categories
corporate: Professional business colors
sequential: Gradual scales for ordered data
diverging: Two-tone scales for data with midpoints
Use these palettes by adding a scale configuration to your plot.
| Name | Required | Description | Default |
|---|---|---|---|
| category | No | Optional category filter (colorblind_safe, scientific, categorical, corporate, sequential, diverging) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It describes the organization of palettes by category and hints at output content ('preview colors'), but does not specify critical details such as whether the list is paginated, the format of the preview colors, potential rate limits, or error conditions. For a tool with no annotation coverage, this is a significant gap in transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured and appropriately sized, starting with a clear purpose statement followed by a bulleted list of categories and a usage note. Each sentence adds value without redundancy. It could be slightly more front-loaded by integrating the usage hint earlier, but overall it is efficient and easy to parse.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (1 optional parameter, no output schema, no annotations), the description is moderately complete. It covers the purpose, parameter semantics, and usage context adequately. However, it lacks details on behavioral aspects (e.g., output format, error handling) and does not fully leverage the absence of annotations to provide comprehensive guidance, leaving some gaps for an AI agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage for its single parameter ('category'), which is documented as an optional filter with enumerated values. The description adds value by listing the specific categories (e.g., 'colorblind_safe', 'scientific') and their purposes, providing semantic context beyond the schema's basic description. However, since the schema already covers the parameter well, the description's contribution is moderate, aligning with the baseline score.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'List available color palettes with preview colors.' It specifies the verb ('List') and resource ('color palettes'), and mentions 'preview colors' as an output detail. However, it does not explicitly differentiate this tool from its siblings (e.g., 'list_geom_types', 'list_plot_templates'), which are also listing tools in the same domain, so it falls short of a perfect score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides implied usage context by listing palette categories and stating 'Use these palettes by adding a scale configuration to your plot,' which suggests integration with plotting tools. However, it lacks explicit guidance on when to use this tool versus alternatives (e.g., 'list_themes' or other listing tools), and does not mention any prerequisites or exclusions, leaving room for ambiguity.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_geom_typesB
List all available geometry types that can be used in plots
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool lists geometry types but doesn't describe traits like whether it returns a static list, requires permissions, has rate limits, or how results are formatted. This leaves significant gaps for a tool that might be used in plot creation workflows.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that directly states the tool's purpose without any wasted words. It is appropriately sized and front-loaded, making it easy to understand at a glance.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (0 parameters, no annotations, no output schema), the description is minimally adequate but lacks depth. It doesn't explain what the output looks like (e.g., a list of strings or objects), which is important since there's no output schema. For a listing tool in a plot-related context, more completeness would help the agent use it effectively.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has 0 parameters with 100% schema description coverage, so the schema fully documents the lack of inputs. The description adds no parameter information, which is acceptable here as there are no parameters to explain. A baseline of 4 is appropriate since no compensation is needed for missing param details.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('List all available geometry types') and the resource ('that can be used in plots'), providing a specific verb+resource combination. However, it doesn't explicitly differentiate from sibling tools like 'list_color_palettes' or 'list_plot_templates' beyond the resource focus, preventing a perfect score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives, such as whether it should be used for reference before creating plots or in conjunction with other listing tools. It lacks explicit when/when-not instructions or named alternatives, offering only implied usage from the resource context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_plot_templatesB
List all available plot templates with descriptions. Templates provide preset configurations for common visualization patterns like time series, scatter with trend, distribution comparison, etc.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It mentions that templates include 'descriptions' and examples of patterns, but does not disclose key behavioral traits such as whether the list is paginated, sorted, or filtered, what the return format is, or any rate limits. This leaves significant gaps in understanding how the tool behaves.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the core purpose and followed by additional context on what templates provide. Every sentence adds value by clarifying the resource and its utility, with no wasted words or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (0 parameters, no output schema, no annotations), the description is adequate but incomplete. It covers the purpose and some context on template types, but lacks details on behavioral aspects like output format or usage constraints, which are important even for simple tools.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has 0 parameters, and schema description coverage is 100%, so there are no parameters to document. The description does not need to add parameter semantics, and it appropriately avoids discussing parameters, earning a baseline score of 4 for this context.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'List' and resource 'all available plot templates with descriptions', specifying what the tool does. It distinguishes from some siblings like 'create_plot' or 'export_plot_config' by focusing on listing rather than creation or export, but does not explicitly differentiate from 'list_color_palettes' or 'list_themes' which are similar list operations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage by mentioning 'Templates provide preset configurations for common visualization patterns', suggesting it's for discovering visualization options. However, it does not explicitly state when to use this tool versus alternatives like 'suggest_plot_templates' or 'list_geom_types', nor provide exclusions or prerequisites for usage.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_themesB
List all available themes for plot styling
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It states this is a list operation, implying it's likely read-only and non-destructive, but doesn't disclose any behavioral traits such as permissions needed, rate limits, output format, or whether it returns a static or dynamic list. This is a significant gap for a tool with zero annotation coverage.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that directly states the tool's purpose without any fluff. It's appropriately sized and front-loaded, making it easy for an agent to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (0 parameters, no output schema, no annotations), the description is minimally adequate. It states what the tool does but lacks context on usage, behavioral traits, or output details. For a list tool, this is the bare minimum, leaving gaps in completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 0 parameters with 100% coverage, so there's no need for parameter documentation in the description. The description appropriately doesn't mention parameters, which aligns with the schema. A baseline of 4 is applied since no parameters exist, and the description doesn't add unnecessary details.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('List') and resource ('all available themes for plot styling'), making the purpose immediately understandable. However, it doesn't specifically differentiate this from sibling tools like 'list_color_palettes' or 'list_geom_types' beyond the resource type, which keeps it from a perfect score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites, context for usage, or how it relates to sibling tools like 'list_plot_templates' or 'suggest_plot_templates', leaving the agent to infer usage scenarios.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
preview_dataA
Preview and inspect data before creating plots.
Returns a comprehensive summary including:
Dataset shape (rows and columns)
Column names and data types
First few rows of data
Basic statistics for numeric columns
Missing value counts
This helps verify data loaded correctly and understand its structure.
| Name | Required | Description | Default |
|---|---|---|---|
| data_source | Yes | Data source configuration (file, URL, or inline data) | |
| rows | No | Number of rows to preview (default: 5) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It effectively describes what the tool returns (a comprehensive summary with specific components like dataset shape and statistics), which is valuable. However, it does not mention potential limitations, error conditions, performance characteristics, or authentication needs that might be relevant for a data inspection tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured and front-loaded, starting with the core purpose, followed by a bulleted list of return details, and ending with the tool's utility. Every sentence earns its place by adding value without redundancy, making it efficient and easy to parse.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (2 parameters with nested objects, no output schema, and no annotations), the description is largely complete. It clearly explains the tool's purpose, usage context, and return format. However, without an output schema, it could benefit from more detail on the structure of the returned summary (e.g., format or keys), and it lacks information on error handling or data size limits.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already fully documents both parameters (data_source and rows). The description does not add any parameter-specific semantics beyond what the schema provides, such as explaining how data_source configuration affects preview behavior or clarifying the rows parameter's impact. Baseline 3 is appropriate when the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with specific verbs ('preview and inspect data') and resource ('data'), distinguishing it from sibling tools focused on plot creation, configuration, and listing. It explicitly positions this as a verification step 'before creating plots,' making its role distinct within the toolset.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use this tool ('before creating plots' to 'verify data loaded correctly and understand its structure'), but does not explicitly state when not to use it or name alternatives among sibling tools. The guidance is helpful but lacks explicit exclusions or comparisons.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
suggest_plot_templatesB
Analyze data and suggest appropriate plot templates.
Examines data characteristics (number of numeric/categorical columns, presence of time data) and optionally a user goal to recommend suitable templates.
| Name | Required | Description | Default |
|---|---|---|---|
| data_source | Yes | Data source to analyze | |
| goal | No | Optional user goal (e.g., 'compare distributions', 'show trend', 'correlation') |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions analyzing data characteristics and recommending templates, but fails to disclose critical behavioral traits such as whether this is a read-only operation, if it requires specific permissions, potential rate limits, or what the output format looks like (e.g., list of templates with metadata). For a tool with no annotations, this is a significant gap, warranting a score of 2.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately sized with two sentences that efficiently convey the tool's function and parameters. The first sentence states the core purpose, and the second elaborates on the analysis process. There's no wasted text, and it's front-loaded with key information, though it could be slightly more structured (e.g., bullet points for clarity).
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity (data analysis tool with 2 parameters, no output schema, and no annotations), the description is moderately complete. It covers the purpose and parameter roles but lacks details on behavioral aspects, output format, and explicit usage context. Without an output schema, it should ideally hint at return values (e.g., 'recommends suitable templates'), which it partially does but not comprehensively. This results in a score of 3, as it's adequate but has clear gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents both parameters ('data_source' and 'goal'). The description adds marginal value by explaining that 'data_source' is analyzed for characteristics and 'goal' is optional for user intent, but doesn't provide additional syntax, format details, or examples beyond what the schema implies. With high schema coverage, the baseline is 3, and the description doesn't significantly exceed this.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Analyze data and suggest appropriate plot templates.' It specifies the verb ('analyze' and 'suggest') and resource ('plot templates'), and distinguishes it from siblings like 'create_plot' or 'list_plot_templates' by focusing on recommendation rather than creation or listing. However, it doesn't explicitly differentiate from 'preview_data' or other analysis tools, keeping it at 4 instead of 5.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage by mentioning it 'examines data characteristics' and optionally a 'user goal,' suggesting it's for data exploration or visualization planning. However, it lacks explicit guidance on when to use this tool versus alternatives like 'preview_data' for initial inspection or 'create_plot_from_template' for direct creation, and no exclusions are provided. This results in a score of 3 for implied but not explicit guidelines.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
10 tool updates
v1.0.0- Added
batch_create_plots - Changed
create_plot1 field changed- added
Input schema / properties / transformsAdded value: +{ + "description": "Data transformations to apply before plotting (filter, group_summarize, sort, select, rename, mutate, drop_na, fill_na, sample, unique, rolling, pivot)", + "items": { + "properties": { + "type": { + "description": "Transform type", + "type": "string" + } + }, + "required": [ + "type" + ], + "type": "object" + }, + "type": "array" +}
- Added
create_plot_from_template - Added
export_plot_config - Added
import_plot_config - Added
list_color_palettes - Added
list_plot_templates - Added
list_themes - Added
preview_data - Added
suggest_plot_templates
2 tool updates
- First observed
create_plot - First observed
list_geom_types
TDQS
Each tool has a clearly distinct purpose with no ambiguity: batch_create_plots handles multiple plots, create_plot builds custom visualizations, create_plot_from_template uses predefined templates, export/import_plot_config manage configurations, list_color_palettes/geom_types/templates/themes provide discovery, preview_data inspects data, and suggest_plot_templates offers recommendations. The tools cover different aspects of the plotting workflow without overlap.
All tool names follow a consistent snake_case verb_noun pattern (e.g., create_plot, list_color_palettes, preview_data). The naming is predictable and readable throughout, with verbs like create, list, export, import, preview, and suggest clearly indicating actions.
With 11 tools, the server is well-scoped for a plotting library, covering creation (custom, batch, template-based), configuration management, data inspection, and discovery of palettes, geometries, templates, and themes. Each tool earns its place by addressing a specific need in the visualization workflow.
The tool surface is complete for the plotnine domain, offering full lifecycle coverage: data inspection (preview_data), creation (create_plot, batch_create_plots, create_plot_from_template), customization (list tools for discovery), configuration management (export/import_plot_config), and intelligent assistance (suggest_plot_templates). There are no obvious gaps that would hinder agent workflows.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Renders interactive Chart.js charts and dashboards inline in AI conversations.
Create, inspect, manage, and render charts and data visualizations as SVG/PNG or interactive embeds.
The statistical analyst in your AI chat — validated, citable, re-runnable analysis of your data.
Generate production-ready chart code (Recharts, Chart.js, ECharts, Plotly) from a prompt.
Related MCP Servers
- -licenseNot gradedqualityNot gradedmaintenanceEnables generation of 25+ types of charts and data visualizations using AntV, including bar charts, line charts, maps, mind maps, and specialized diagrams like fishbone and sankey charts. Supports both statistical charts and geographic visualizations for comprehensive data analysis and presentation.200-
- AlicenseNot gradedqualityFmaintenanceEnables creating interactive data visualizations from natural language queries using DuckDB for local databases or Databricks for enterprise data warehouses. Supports multiple chart types, CSV imports, SQL queries, and automatic statistical analysis through Claude Desktop.19MIT
- AlicenseAqualityDmaintenanceProvides machine learning researchers with tools for creating publication-quality scientific visualizations, statistical plots, and 2D data representations. It streamlines the research workflow by enabling AI assistants to generate complex figures from CSV, JSON, or direct data inputs.9MIT
- FlicenseNot gradedqualityDmaintenanceEnables creating Plotly charts from natural language in Cursor, supporting a wide variety of trace types with full customization.9-
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Fervoyush/plotnine-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server