Skip to main content
Glama

generate_social_content

Create platform-tailored social posts for a product from a brief, so sellers can publish to LinkedIn, Instagram, X, Facebook, TikTok, and Pinterest.

Instructions

Generate platform-tailored social posts for a product with Claude.

Token usage is recorded automatically (see usage_stats). platforms e.g. ["linkedin", "instagram", "x", "facebook", "tiktok", "pinterest"].

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
toneNoprofessional
featuresNo
keywordsNo
languageNoEnglish
variantsNo
platformsYes
product_nameYes
extra_instructionsNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
okNo
errorNo
modelNo
postsNo
usageNo
raw_textNo
error_typeNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=false, openWorldHint=true and idempotentHint=false, so the agent knows output is generated, non-deterministic and externally sourced. The description adds genuinely useful context that token usage is recorded automatically and where to check it, which the annotations do not convey. It stops short of noting cost magnitude, rate limits, or latency for an LLM-backed call.

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?

Two short sentences, front-loaded with the purpose before the token-accounting note and the platform examples. Nothing is padded, though the trailing newline-wrapped example is slightly awkward.

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?

An output schema exists, so return values need not be described. However, for an 8-parameter generation tool with zero schema coverage and no usage guidance, six parameters and the tool-selection decision are left entirely unexplained.

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

Parameters2/5

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

Schema description coverage is 0% across 8 parameters, so the description carries the full burden and largely fails it. It supplies useful example values for `platforms` (which has no enum), but tone, features, keywords, language, variants and extra_instructions are left completely undefined in both the schema and the description.

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 description states a specific verb+resource: generating platform-tailored social posts for a product, and names the underlying generator (Claude). It is distinguishable from siblings like generate_product_detail, though it doesn't explicitly contrast with them.

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?

There is no statement of when to use this tool versus alternatives, no prerequisites, and no exclusions. The only routing hint is a pointer to usage_stats for token accounting, which is informational rather than usage guidance.

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