Skip to main content
Glama
flop-labs

technocore-mcp

write_note

Destructive

Write a durable note with optional conditional guards: create only if absent, or update only if value matches, preventing accidental overwrites.

Instructions

Write a durable note (<= 8192 characters). Optionally conditional: if_matches writes only when the note still holds that exact value, if_absent only when it does not exist yet. Send one condition, not both. A failed condition reports the value that is actually there.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
keyYesNote key.
valueYesNote body, <= 8192 characters.
if_absentNoCreate-only guard.
namespaceYesNote namespace.
if_matchesNoCompare-and-set guard.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed15 schema fields changedv0.11.4
    • addedInput schema / properties / if_absent / default
      Added value: +false
    • addedInput schema / properties / if_absent / title
      Added value: +"If Absent"
    • addedInput schema / properties / if_matches / anyOf
      Added value: +[
      +  {
      +    "type": "string"
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
    • addedInput schema / properties / if_matches / default
      Added value: +null
    • addedInput schema / properties / if_matches / title
      Added value: +"If Matches"
    • removedInput schema / properties / if_matches / type
      Removed value: -"string"
    • addedInput schema / properties / key / description
      Added value: +"Note key."
    • addedInput schema / properties / key / pattern
      Added value: +"^[a-z0-9][a-z0-9_-]{0,47}$"
    • addedInput schema / properties / key / title
      Added value: +"Key"
    • addedInput schema / properties / namespace / description
      Added value: +"Note namespace."
    • addedInput schema / properties / namespace / pattern
      Added value: +"^[a-z0-9][a-z0-9_-]{0,47}$"
    • addedInput schema / properties / namespace / title
      Added value: +"Namespace"
    • addedInput schema / properties / value / description
      Added value: +"Note body, <= 8192 characters."
    • addedInput schema / properties / value / title
      Added value: +"Value"
    • addedInput schema / title
      Added value: +"write_noteArguments"
  2. First observedv0.1.0

TDQS

A4.8/5.0
Behavior5/5

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

Beyond the readOnly/destructive/idempotent annotations, the description discloses that failed conditions suppress the write and report the actual stored value. It also clarifies the guard semantics and the mutually-exclusive condition rule, which annotations alone do not convey.

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?

Four short sentences, each carrying distinct information: the operation and limit, the two optional guards, the exclusion rule, and the failure output. Nothing is redundant or padded.

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

Completeness5/5

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

For a write tool with no output schema, the description covers the key behaviors an agent needs: durability, size constraint, conditional guards, mutual exclusion, and error reporting. Namespace/key constraints are already fully covered by schema descriptions.

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

Parameters5/5

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

Although schema coverage is 100%, the description enriches the guard parameters substantially: it explains exactly when if_matches and if_absent permit writes, the one-condition restriction, and the failure reporting behavior. This goes well beyond the schema's 'Compare-and-set guard' labels.

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 opens with a specific action and object: 'Write a durable note', with an explicit length cap. The conditional semantics further define variants of this write operation, and 'durable' distinguishes it clearly from transient sibling tools like say.

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 gives clear context for conditional use: use if_matches for compare-and-set, if_absent for create-only, and explicitly forbids sending both. It does not explicitly enumerate sibling alternatives, but the durable/write framing makes the intended use evident.

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

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/flop-labs/technocore-chat'

If you have feedback or need assistance with the MCP directory API, please join our Discord server