Skip to main content
Glama
itk-dev

ITK Dev Docker MCP Server

Official
by itk-dev

itkdev_detect_project

Analyze a directory to detect ITK Dev project configuration, template type, PHP version, and framework. This helps identify project setup for Docker integration.

Instructions

Analyze a directory to detect ITK Dev project configuration, template type, PHP version, and framework

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYesAbsolute path to the project directory to analyze

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.2

TDQS

B3.2/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral burden. 'Analyze' implies a read-only inspection, but the description never confirms it is non-mutating, says nothing about what happens if detection fails, and does not indicate whether it inspects the filesystem recursively. For a tool with zero annotation coverage this is thin.

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?

A single front-loaded sentence with no filler; the verb and detected attributes are stated immediately.

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?

With no output schema, the description usefully enumerates the four things detection returns (configuration, template type, PHP version, framework), which is enough for an agent to know what to expect. It falls short only on error/edge-case behavior for a missing or invalid path.

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 100% and the single 'path' parameter is fully documented in the schema as an absolute path. The description adds no format, constraint, or edge-case detail beyond that, so the baseline 3 applies.

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 (Analyze) and resource (a directory) and enumerates what is detected: ITK Dev project configuration, template type, PHP version, and framework. This clearly separates it from siblings like itkdev_list_templates and itkdev_get_template_content, though it never names those alternatives explicitly.

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

Usage Guidelines2/5

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

There is no guidance on when to reach for this tool versus itkdev_compare_project or the template-fetching siblings, nor any stated prerequisites (e.g., the directory must exist or be a valid project). The agent must infer usage entirely from the purpose sentence.

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