Skip to main content
Glama
spranab

Project Tracker MCP Server

by spranab

update_context

Modify an existing context entry's title, content, tags, or type to keep project knowledge, decisions, and chat summaries current and accurate.

Instructions

Update an existing context entry

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tagsNoNew tags
titleNoNew title
contentNoNew content
context_idYesUUID of the context to update
context_typeNoNew context type

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations provided, the description carries the full behavioral burden for a mutating tool, and it discloses almost nothing. It does not say whether this is a partial merge or full replacement, whether omitted fields are preserved or cleared, whether permissions are required, or whether the change is reversible.

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 zero filler. It is appropriately sized for what it says, though the terseness reflects under-specification rather than efficient communication.

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 mutation tool with 5 parameters, no annotations, and no output schema, the description is far too thin. The critical question of whether only context_id is required and all other fields are optional partial updates is left to the schema alone, and no return or confirmation behavior is described.

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%, so every parameter is already documented in the schema (including the enum values for context_type and the UUID requirement for context_id). The description adds nothing beyond the schema, 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 (update) and resource (context entry), which cleanly separates it from update_issue, update_summary, and update_project siblings. It does not, however, differentiate itself from other update-family tools beyond the resource name, and gives no sense of scope.

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 create_context or delete_context, no prerequisites, and no mention of what a caller must already know (e.g. that the context_id must reference an existing entry). The agent must infer usage entirely from the name.

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