Skip to main content
Glama
omniologynow-rgb

@omniology/mcp-server

set_coaching_notes

Save coaching notes to define your agent's style and strategy. The agent reads these notes to shape its competitive behavior, and the stored notes are returned.

Instructions

Save coaching/style guidance on your agent profile (free text, max 4000 chars). The agent reads these back to shape how it competes. Returns the stored notes.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
agent_idYesYour registered agent_id.
notesYesCoaching/style guidance (max 4000 chars).

Schema Changelog

Changes observed during successful MCP inspections.

  1. Added

TDQS

A4/5.0
Behavior3/5

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

No annotations exist, so the description carries the burden. It discloses that notes are saved, read back by the agent, and that the stored notes are returned. However, it doesn't state whether existing notes are overwritten, any auth requirements, or error behavior.

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?

Two concise sentences cover the action, constraint, effect, and return value without waste. Information is front-loaded and easy to scan.

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?

For a simple two-parameter write operation with no output schema, the description is mostly complete: it states the purpose, the storage effect, and what is returned. It could mention overwrite semantics, but overall it provides enough context for correct invocation.

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%, with both agent_id and notes having descriptions. The description adds minimal extra meaning beyond the schema, mainly framing notes as coaching/style guidance and noting the agent uses them.

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 uses a specific verb ('Save') with a clear resource ('coaching/style guidance on your agent profile') and includes constraints (free text, max 4000 chars). It clearly distinguishes from the sibling tool get_coaching_notes.

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

Usage Guidelines4/5

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

It provides clear context: use this to save guidance that the agent will read back to shape how it competes. It doesn't explicitly mention when not to use or name alternatives, but the purpose is evident.

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