Skip to main content
Glama

crosstabs

Profile dataset

profile_dataset
Idempotent

Return bounded types, missingness and cardinality diagnostics. Queues a hosted job; use get_job to retrieve its result.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
projectIdYes
requestIdYesA new UUID for this job, reused only when retrying identical inputs.
workspaceTokenYesSecret workspace capability returned by create_workspace. Treat as a password; never place in a query string.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A3.8/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=false, idempotentHint=true and destructiveHint=false, but the description adds the crucial asynchronous behavior: it queues a hosted job and results must be fetched with get_job. That execution model is not visible in the annotations and materially changes how an agent should use the tool. It stops short of explaining job lifecycle, timeouts, or failure behavior, so not a 5.

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

Conciseness5/5

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

Two tightly written sentences with no filler. The functional output is stated first and the retrieval instruction second, which is the right front-loading for an asynchronous tool.

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

Completeness4/5

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

For a three-parameter async job with no output schema, the description tells the agent both what is computed and how to collect the result via get_job, which is the key missing piece. It could go further by noting that repeated calls with the same requestId return the existing job (matching idempotentHint), but the essentials are present.

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

Parameters3/5

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

Schema description coverage is 67% (requestId and workspaceToken documented in-schema), so the schema carries most of the burden. The description adds no parameter-level meaning, such as clarifying projectId scoping or the retry semantics of requestId, leaving it at the baseline level for medium coverage.

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

Purpose4/5

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

The description states a specific verb and output ('Return bounded types, missingness and cardinality diagnostics'), which tells an agent exactly what the tool produces. It does not name or distinguish itself from sibling tools like inspect_project or detect_schema_drift, so a 4 rather than a 5.

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

Usage Guidelines3/5

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

It gives a clear follow-up workflow ('Queues a hosted job; use get_job to retrieve its result'), which is genuinely useful for invocation. However, it offers no guidance on when to choose profile_dataset over related diagnostics tools such as inspect_project or detect_schema_drift, nor any prerequisite context, so usage is only implied.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources