Skip to main content
Glama

crosstabs

Inspect project

inspect_project
Idempotent

Inspect a redacted workspace project graph, capabilities and current revision. 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

A4/5.0
Behavior4/5

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

Annotations declare readOnlyHint=false, idempotentHint=true and destructiveHint=false, and the description explains the non-obvious reason: the call queues a hosted asynchronous job rather than returning data directly. That resolves the apparent tension between a read-style 'inspect' and non-readOnlyHint, and 'redacted' signals sanitized content. It does not mention job lifetime, polling expectations, or permission requirements.

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 sentences, no filler; the async-job consequence and the get_job follow-up are front-loaded right after the purpose statement.

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 an async, no-output-schema tool the description supplies the two things an agent most needs: what is inspected and that the result arrives via get_job. Missing only secondary details such as return shape and any auth/permission caveats beyond workspaceToken in the schema.

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 coverage is 67%; requestId and workspaceToken carry their own descriptions (UUID reuse rules, secret handling), so the schema does the heavy lifting. The description adds only the implied meaning of projectId via 'workspace project graph' and no format or syntax detail beyond the schema.

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?

States a specific verb (inspect) and resource (redacted workspace project graph, capabilities, current revision), which is concrete and not a restatement of the name. It does not, however, distinguish itself from close siblings like get_workspace, get_runtime_status or list_projects, so an agent must guess which inspection tool to pick.

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?

Gives clear operational context: the call queues a hosted job and the result must be fetched with get_job — an explicit next-step alternative. It stops short of stating when to use this over get_workspace/list_projects or any exclusions, so it is strong but not complete routing guidance.

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