Skip to main content
Glama
ayushsri

mcp-tabular

by ayushsri

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
MCP_TABULAR_ROOTNoRestrict which directory files may be loaded from.

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

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
load_fileA

Load a CSV or Excel file into an in-memory table for SQL querying.

Args: path: path to a .csv, .tsv, .xlsx, or .xls file. table_name: optional; defaults to the file stem.

list_tablesA

List tables currently loaded and their source files.

describe_tableB

Column names, types, null counts, and min/max — enough to write correct SQL.

queryC

Run a read-only SELECT/WITH query. Results are capped at MAX_ROWS.

sample_rowsB

Return n representative rows from a loaded table.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

B3.4/5.0

Scored across 5 tools

Disambiguation5/5

Each tool has a clear, distinct purpose: describing schema, listing tables, loading files, running queries, and sampling rows. No overlap in functionality.

Naming Consistency4/5

Most tool names follow a consistent verb_noun pattern (describe_table, list_tables, load_file, sample_rows). 'query' is a single verb but is a common and clear exception that doesn't cause confusion.

Tool Count5/5

With 5 tools covering loading, listing, describing, querying, and sampling, the count is well-suited for a focused tabular data server. No unnecessary or missing tools.

Completeness4/5

The tool set covers the core workflow for read-only SQL querying on loaded tables. Minor gaps like table removal or export exist but are not essential for the stated purpose.

Maintenance

ActivityStale
ResponsivenessNo issues