Kaggle Dataset Analyst
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
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 |
|---|---|
| list_datasetsA | List the CSV datasets available under the datasets/ directory. |
| profile_datasetA | Profile a dataset: shape, column dtypes, numeric summary stats, and a sample of rows. |
| detect_missing_valuesA | Report missing-value counts and percentages per column, sorted by the most-missing first. |
| plot_distributionA | Render a distribution chart for a column and save it as a PNG in outputs/. Numeric columns get a histogram; categorical columns get a bar chart. Returns the saved file path. |
| train_modelA | Train a baseline scikit-learn model, evaluate it on a held-out split, and persist it to models/. |
| list_modelsA | List the trained models saved under models/, with the target column and task type each one predicts. |
| predictA | Score new data with a previously trained model (from train_model). |
| download_kaggle_datasetA | Download a dataset from Kaggle via kagglehub and copy any CSVs into datasets/. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| eda_walkthrough | A guided exploratory-data-analysis plan for a dataset. |
| insight_report | Open-ended insight discovery for a spreadsheet, with visualizations. |
| ml_pipeline | A plan for building and evaluating a predictive model for `target`. |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| datasets_list_resource | The list of available dataset filenames, one per line. |
TDQS
Scored across 8 tools
Each tool targets a distinct action: listing datasets, profiling, missing values, plotting, training, listing models, predicting, and downloading. There is no overlap or ambiguity between them.
All tool names follow a consistent verb_noun pattern in snake_case (e.g., list_datasets, train_model). The single exception is 'predict' (verb only), but it remains stylistically consistent.
With 8 tools, the set is well-scoped for a Kaggle analyst workflow. Each tool earns its place, covering data acquisition, exploration, model training, and prediction without unnecessary bloat.
The toolset covers the full lifecycle from downloading to profiling to modeling to predicting. Minor gaps exist, such as no explicit data cleaning tool (though train_model's pipeline handles imputation/encoding) and no model deletion, but these are not critical for the intended purpose.