Skip to main content
Glama
growing-pai-git

MCP Teamleader Focus

teamleader_update_note

Update an existing note's content in Teamleader Focus by specifying its ID and the new text.

Instructions

Update the content of an existing note.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesThe note ID
contentYesThe new note content

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.2

TDQS

B3.4/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 burden of behavioral disclosure. It states 'update' implying mutation, but does not disclose whether the operation is a full replacement or partial update, what happens if the note does not exist, or any permission requirements. This is a significant gap 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?

The description is a single concise sentence with no filler. It is appropriately short for a simple tool, though it lacks some contextual richness. The brevity is efficient and front-loaded.

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

Completeness3/5

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

For a simple tool with two fully described parameters and no output schema, the description covers the basics. However, the lack of usage guidance and behavioral transparency means an agent might not fully understand the operation's implications. It is minimally complete but has clear gaps.

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 100% – both id and content have descriptions. The description adds minimal extra meaning beyond the schema, only clarifying that content is the new content. Since the schema already documents both parameters, the baseline of 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'Update' and the resource 'existing note', specifying that it modifies content. It implicitly distinguishes from create_note (new note) and list_notes (retrieval), so an agent can easily tell it apart.

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

Usage Guidelines3/5

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

The description implies usage for updating an existing note's content but provides no explicit guidance on when to use it over alternatives like create_note or when not to use it. There are no exclusions or alternative tool mentions, leaving the agent to infer the appropriate context.

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

Deploy Server

Other Tools