Data Analytics MCP Toolkit
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| PYTHONPATH | No | Environment variable to ensure the 'src' directory is in the Python search path for module resolution. |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| load_dataA | |
| clean_dataB | |
| plot_barC | Bar chart: x_column as categories, y_column as values (or count of x if y_column omitted). |
| plot_lineC | Line chart: x_column on x-axis, one or more y_columns as lines. |
| plot_scatterC | Scatter plot of x_column vs y_column. |
| plot_histogramC | Histogram of a numeric column (distribution). |
| plot_boxC | Box plot: single numeric column, or all numeric columns if column is omitted. |
| plot_heatmapC | Heatmap of correlation matrix. If columns omitted, uses all numeric columns. |
| train_test_splitB | |
| train_linear_regressionC | Fit a linear regression model. Returns model_id for evaluate_regression. |
| train_logistic_regressionB | Fit a logistic regression classifier. Returns model_id for evaluate_classification. |
| train_kmeansC | Fit K-means clustering. Returns model_id for evaluate_clustering. |
| evaluate_regressionC | Compute MSE and R² for a regression model on test data. |
| evaluate_classificationC | Compute accuracy for a classification model on test data. |
| evaluate_clusteringC | Compute silhouette score for a clustering model on test data. |
| run_analyticsB | |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| list_pipelines | List available analytics pipelines with short descriptions. |
| pipeline_visualization | Steps: 1) load_data(source, format) 2) clean_data(data_id) 3) plot_histogram/plot_bar/plot_line/plot_scatter/plot_box/plot_heatmap(data_id, column(s)). Or use run_analytics(intent, data_source). |
| pipeline_regression | Steps: 1) load_data 2) clean_data 3) train_test_split(data_id, target_column) 4) train_linear_regression(train_data_id, target_column) 5) evaluate_regression(model_id, test_data_id). Or use run_analytics(intent, data_source) with intent like 'predict Y from X'. |
| pipeline_classification | Steps: 1) load_data 2) clean_data 3) train_test_split 4) train_logistic_regression 5) evaluate_classification. Or use run_analytics with intent like 'classify' or 'predict category'. |
| pipeline_clustering | Steps: 1) load_data 2) clean_data 3) train_kmeans(data_id, n_clusters) 4) evaluate_clustering(model_id, data_id). Or use run_analytics with intent like 'cluster into k groups'. |
TDQS
Scored across 16 tools
Most tools have distinct purposes, with clear separation between data loading/cleaning, plotting, model training, and evaluation functions. However, 'run_analytics' overlaps significantly with the specialized tools, as it can perform many of the same functions through a single interface, which could cause confusion about when to use it versus the specific tools.
Tool names follow a consistent verb_noun pattern throughout, with clear and predictable naming conventions. All tools use snake_case, and verbs like 'clean', 'evaluate', 'load', 'plot', 'run', 'train', and 'train_test_split' are applied consistently to their respective nouns, making the set highly readable and predictable.
With 16 tools, the count is slightly high but reasonable for a comprehensive data analytics toolkit. It covers a broad range of functions from data ingestion to visualization and machine learning, though it might be borderline heavy for some use cases. Each tool appears to earn its place without obvious redundancy, except for the overlap with 'run_analytics'.
The tool set provides complete coverage for a data analytics workflow, including data loading, cleaning, splitting, multiple types of plots, training for classification, regression, and clustering models, and corresponding evaluation metrics. The inclusion of 'run_analytics' as a high-level tool further ensures no gaps, offering a flexible alternative for common tasks.