Skip to main content
Glama

crosstabs

Run analysis plan

run_analysis_plan
Idempotent

Validate and execute a portable plan against one loaded project revision, returning aggregate evidence and review findings. Queues a hosted job; use get_job to retrieve its result.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
planYes
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.9/5.0
Behavior4/5

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

Annotations declare readOnlyHint=false, idempotentHint=true, destructiveHint=false, so the mutation/idempotency profile is already covered. The description adds the key behavioral trait not in the annotations: the work is queued as a hosted job and results are fetched asynchronously via get_job. It does not state failure modes or what 'review findings' concretely contain.

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 tight sentences, front-loaded with the core action and outcome, then the async retrieval note. No filler; every clause carries information.

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

Completeness3/5

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

For a tool with a very deep nested plan schema and no output schema, the description is thin. It does cover the two most uncertain things (async queueing and the rough return content), but says nothing about the plan structure it demands or how it relates to create/validate_analysis_plan.

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 only 50%: requestId and workspaceToken are documented in the schema, but projectId and the large nested plan object carry no field-level descriptions. The description adds only the loose notions 'portable plan' and 'loaded project revision', which maps to the plan/projectRevision concept but does not explain the plan's fingerprints, tables, or version constraints.

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 gives a specific compound verb (validate + execute) and a clear resource (a portable plan against one loaded project revision), plus the outcome (aggregate evidence and review findings). It does not explicitly name the closely related sibling validate_analysis_plan or create_analysis_plan, so the validate-vs-execute boundary must be inferred.

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

Usage Guidelines4/5

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

It explicitly routes the agent to the follow-up tool: 'Queues a hosted job; use get_job to retrieve its result.' That is genuine usage guidance for the async workflow. It stops short of saying when to prefer this over validate_analysis_plan or what preconditions the plan must satisfy.

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