Skip to main content
Glama
e1imba

Project Customization MCP

by e1imba

update_readme

Generates or updates a README.md file with project guidelines and best practices derived from codebase analysis.

Instructions

Update or create README.md with project guidelines and best practices

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
guidelinesNo
projectPathNo
analysisDataNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.3

TDQS

C2.7/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 burden. It says 'update or create' but never discloses whether an existing README is overwritten or merged, whether filesystem write permissions are needed, or if the operation is reversible — critical for a mutation tool.

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 efficient sentence with the verb and resource front-loaded. No wasted words, though brevity here comes at the cost of substance.

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?

A mutation tool with no annotations, no output schema, 0% parameter coverage, and a nested object parameter is significantly under-specified. The description omits overwrite behavior, required inputs, and return expectations.

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

Parameters2/5

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

Schema description coverage is 0% for 3 parameters. The description gestures at 'guidelines' but says nothing about 'projectPath' (target location) or the nested 'analysisData' object, so it fails to compensate for the undocumented 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 clear verb (update or create) and resource (README.md) plus the content type (project guidelines and best practices). It doesn't explicitly distinguish itself from siblings like analyze_project or generate_copilot_instructions, but the resource is unambiguous.

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?

No guidance on when to use this versus the sibling tools, no prerequisites, and no conditions. 'Update or create' implies a use case but leaves the agent to infer when updating is warranted over the other project tools.

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