mcp-data-summary
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 |
|---|---|
| discover_datasetsA | |
| generate_bar_chartA | |
| generate_line_chartA | |
| generate_histogramA | |
| generate_pie_chartA | |
| build_subset_datasetA | |
| get_summary_statisticsA | |
| generate_scatter_plotA | |
| build_html_reportA | |
| export_pdf_reportA | |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| data_summary_workflow | Start the full data-summary workflow. This prompt guides the LLM through: discovering datasets, understanding their schemas, generating relevant charts, and producing a final HTML/PDF summary report. Args: datasets: Comma-separated dataset names, or "all" for everything. report_title: Title to display on the cover page of the report. |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| list_datasets | Lists all available dataset names |
TDQS
Scored across 10 tools
Each generate_* chart tool targets a distinct chart type, and build/discover/export tools are clearly separate. The only mild overlap is between generate_pie_chart and generate_bar_chart, both of which can visualize categorical composition, though their descriptions clarify the intended use.
All tool names follow a consistent verb_noun pattern using snake_case (e.g., generate_pie_chart, discover_datasets, build_html_report). The verbs vary by action but are predictable and semantically appropriate, with no mixing of camelCase or inconsistent styles.
Ten tools is a well-scoped set for a data summary server. Each tool covers a distinct step in the exploration-to-report workflow, and none feel redundant or unnecessary.
The tool set provides a complete pipeline: discover datasets, inspect statistics, filter subsets, generate multiple chart types, assemble an HTML report, and export to PDF. There are no obvious dead ends or major missing operations for the stated purpose.