Skip to main content
Glama

record_content

File a growth idea, original X draft or research outcome on the same idea. Research appends a result with method, limitations and dated sources; send expected_updated_at unchanged from the calendar. It preserves evidence holds and never authorises drafting. Read the outcome in Memory at /app/knowledge-base?open=research (requires 'act' scope); no spend or posting. Keep run_key stable. New drafts need action_kind social_post and one idea_id or source_idea. For new original posts, source URLs are evidence. Use adopt_legacy only to classify an exact saved replay; a legacy reply retains its saved X status as the destination. Read get_move; use existing move verbs for completion.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
whyNo
textNo
titleNo
channelNo
idea_idNo
run_keyNo
researchNo
claim_idsNo
operationYes
source_urlNo
action_kindNo
source_ideaNo
adopt_legacyNo
expected_updated_atNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed3 schema fields changed
    • addedInput schema / properties / expected_updated_at
      Added value: +{
      +  "format": "date-time",
      +  "type": "string"
      +}
    • changedInput schema / properties / operation / enum
      Previous value: -[
      -  "idea",
      -  "draft"
      -]New value: +[
      +  "idea",
      +  "draft",
      +  "research"
      +]
    • addedInput schema / properties / research
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "limitations": {
      +      "maxLength": 5000,
      +      "minLength": 1,
      +      "type": "string"
      +    },
      +    "method": {
      +      "maxLength": 5000,
      +      "minLength": 1,
      +      "type": "string"
      +    },
      +    "outcome": {
      +      "enum": [
      +        "supported",
      +        "not_supported",
      +        "inconclusive"
      +      ],
      +      "type": "string"
      +    },
      +    "sources": {
      +      "items": {
      +        "additionalProperties": false,
      +        "properties": {
      +          "observed_at": {
      +            "format": "date-time",
      +            "type": "string"
      +          },
      +          "title": {
      +            "maxLength": 300,
      +            "minLength": 1,
      +            "type": "string"
      +          },
      +          "url": {
      +            "format": "uri",
      +            "maxLength": 2048,
      +            "type": "string"
      +          }
      +        },
      +        "required": [
      +          "title",
      +          "url",
      +          "observed_at"
      +        ],
      +        "type": "object"
      +      },
      +      "maxItems": 50,
      +      "type": "array"
      +    },
      +    "summary": {
      +      "maxLength": 5000,
      +      "minLength": 1,
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "outcome",
      +    "summary",
      +    "method",
      +    "limitations",
      +    "sources"
      +  ],
      +  "type": "object"
      +}
  2. Changed1 schema field changed
    • addedInput schema / properties / adopt_legacy
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "action_kind": {
      +      "enum": [
      +        "social_post",
      +        "community_reply"
      +      ],
      +      "type": "string"
      +    },
      +    "output_id": {
      +      "format": "uuid",
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "output_id",
      +    "action_kind"
      +  ],
      +  "type": "object"
      +}
  3. Added

TDQS

A3.7/5.0
Behavior4/5

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

Annotations only declare non-destructive mutation; the description adds genuinely new context such as the required 'act' scope, that there is no spend or posting, idempotency via a stable run_key, and that it never authorises drafting. Some of this ('preserves evidence holds', 'never authorises drafting') is cryptically worded, but the added behavioral signal is substantial.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The purpose is front-loaded in the first sentence, but the remainder is a dense, run-on block of qualifications that mixes parameter rules, scope requirements, and cross-tool routing. Most sentences carry information, yet the phrasing ('never authorises drafting', 'preserves evidence holds') is compressed to the point of being hard to parse.

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 14-parameter tool with 0% schema coverage, nested objects, and no output schema, the description should cover more. It addresses the research and draft paths reasonably but omits the idea-path basics (why, text, title, channel) and any sense of what the call returns or how run_key dedup behaves on replay.

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 0% across 14 parameters, so the description must carry the load. It names several parameters (operation, research with method/limitations/sources, expected_updated_at, action_kind, idea_id/source_idea, source_url, adopt_legacy), but leaves why, text, title, channel and claim_ids entirely unexplained, so compensation is partial.

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?

The opening sentence gives a specific verb (file) and three concrete payloads (growth idea, original X draft, research outcome), so an agent can tell what the tool records. It doesn't explicitly differentiate itself from siblings like record_insight or record_claim, which handle adjacent content types, so sibling disambiguation is only partial.

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?

The description gives real routing guidance: use adopt_legacy only to classify an exact saved replay, read get_move and use existing move verbs for completion, and new drafts need action_kind social_post plus one idea_id or source_idea. It stops short of a clean when-to-use / when-not-to-use statement for the three operations themselves.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources