Skip to main content
Glama
Luissalet

Laplace's Hoard MCP Server

by Luissalet

data_list

Read-onlyIdempotent

List registered datasets with name, kind, row count, and columns to identify available data before querying or registering a new file.

Instructions

List the registered datasets: name, kind, row_count, column names.

Call this first when the user mentions a table or file and you do not know its dataset name. Query a dataset by its name in SQL. An empty list means nothing is registered yet: use data_register with the path.

Keywords: what data do you have, list datasets, tables, files, spreadsheets, qué datos hay, qué tablas hay, lista de datasets, archivos, hojas de cálculo.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.6/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare the tool read-only, idempotent, and non-destructive, so the description responsibly adds behavioral context: it lists what is returned and explains the empty-list meaning. This goes beyond re-stating annotations without overclaiming.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The core definition and usage guidance are front-loaded in the first two sentences. The keyword list is slightly redundant but can aid retrieval and does not make the description bloated.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a zero-parameter list tool, the description covers purpose, output fields, when to use it, empty-result behavior, and the next action to take. It is complete enough for an agent to select and invoke correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parametersional signature, so there is nothing for the description to explain. Baseline for a no-parameter tool is 4, and the description adds no conflicting parameter claims.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description states a specific verb ('List'), resource ('registered datasets'), and the exact output fields (name, kind, row_count, column names). This clearly distinguishes it from sibling query, register, and describe tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly says to call this first when the user mentions a table/file and the dataset name is unknown. It also gives a concrete alternative: if empty, use data_register with the path, and instructs querying by `name` in SQL.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.