adx-mcp-server

by pab1it0
Verified

sample_table_data

Retrieves a random sample of rows from the specified table in the Azure Data Explorer database. The sample_size parameter controls how many rows to return (default: 10).

Input Schema

NameRequiredDescriptionDefault
sample_sizeNo
table_nameYes

Input Schema (JSON Schema)

{ "properties": { "sample_size": { "default": 10, "title": "Sample Size", "type": "integer" }, "table_name": { "title": "Table Name", "type": "string" } }, "required": [ "table_name" ], "title": "sample_table_dataArguments", "type": "object" }