Skip to main content
Glama
e1imba

Project Customization MCP

by e1imba

get_customization_recommendations

Analyze your project to generate recommendations for customizing VS Code settings, instruction files, and project guidelines.

Instructions

Get recommendations for customizing VS Code settings, instruction files, and project guidelines

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
projectPathNo
analysisDataNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.3

TDQS

C2.6/5.0
Behavior2/5

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

With no annotations, the description carries the full behavioral burden, and it discloses almost nothing: no confirmation that the call is read-only, no indication of whether analysisData is expected to be pre-computed output, and no description of the response shape. Only the verb 'Get' weakly implies a non-mutating operation.

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

Conciseness4/5

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

A single front-loaded sentence with no filler or repetition. It is efficient, though the brevity is arguably under-specification rather than true conciseness given what is omitted.

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

Completeness2/5

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

For a tool with two parameters, one of them an undocumented nested object, no annotations, and no output schema, the definition omits everything an agent would need beyond the basic purpose: input provenance, optionality (0 required params — so what happens with no args?), and return format.

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

Parameters1/5

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

Schema description coverage is 0% and the description never mentions projectPath or analysisData. The nested, free-form analysisData object (additionalProperties, no defined shape) is the highest-risk input and is completely opaque from both schema and prose, so the description fails to compensate for the coverage gap.

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 names a specific verb ('Get') and a concrete resource scope ('recommendations for customizing VS Code settings, instruction files, and project guidelines'), so the agent knows what comes back. It does not differentiate from the sibling generate_copilot_instructions, which plausibly overlaps with the 'instruction files' portion, leaving ambiguity about which 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 Guidelines2/5

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

There is no statement of when to call this versus analyze_project or generate_copilot_instructions, and no prerequisites are given. The likely dependency (that analysisData comes from analyze_project) is left entirely to inference.

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