Skip to main content
Glama

Headline Analyzer

headline_analyzer
Read-onlyIdempotent

Score and rank up to 20 headlines, best first. FREE.

Scores 0-100 on length, power/emotion words, numbers, structure, and clarity. Typical input {"headlines": ["7 Mistakes New Writers Make", "On Writing"]} returns {"ranked": [{"headline": ..., "score": 85, "notes": ["good length", "contains number"]}, ...]}.

Use when several title options need ranking. Not for email subject lines, which the outbound server's subject_line_scorer judges against deliverability signals, and not for body prose (analyze_writing). Errors: on invalid, missing, or malformed input this tool never raises a protocol error — it returns {"error": ""}. Every call is read-only and idempotent, so after correcting the input it is always safe to retry.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
headlinesYesList of candidate headlines as plain strings; only the first 20 are scored.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false, so the safety profile is covered. The description adds value by clarifying the error behavior (returns error object, never raises protocol errors), the 20-headline limit, and the scoring dimensions. However, it doesn't mention whether the order of ties is deterministic or any rate limits. Still, with strong annotations, the bar is low, and the added context is helpful.

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 reasonably concise at ~6 sentences, with critical info front-loaded (purpose, free, example). The second paragraph adds usage guidelines and error behavior efficiently. Minor structural improvement: the error handling sentence could be a separate paragraph, but overall it's well-organized and every sentence earns its place.

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?

The description covers purpose, usage boundaries, input/output example, error handling, idempotency/read-only safety, and points to relevant siblings. Given the tool's simplicity (1 param, clear schema, rich annotations, output schema present), this is a complete and self-sufficient description that leaves little ambiguity for an AI agent.

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 100%, so the schema already documents the single parameter ('headlines') well, including that only the first 20 are scored. The description reinforces this with an example but adds little new about parameter syntax or constraints beyond what the schema provides. Baseline 3 is correct.

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 starts with a specific verb ('Score and rank'), names the resource ('headlines'), and clarifies the scope ('up to 20 headlines, best first'). The example input/output reinforces the purpose, and it clearly distinguishes from siblings like analyze_writing which handles body prose.

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

Usage Guidelines5/5

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

The description explicitly states when to use ('several title options need ranking') and provides clear exclusion criteria: 'Not for email subject lines' (pointing to subject_line_scorer) and 'not for body prose' (pointing to analyze_writing). It also discusses error handling and retry safety, giving the agent full context.

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.

TDQS

A4.7/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: prose analysis, headline scoring, reading stats, platform length check, product listing, free/paid skill retrieval, and full product details. There is no ambiguity between any pair of tools, and descriptions explicitly note what not to use them for.

Naming Consistency5/5

All tool names use consistent snake_case verbs followed by nouns (e.g., analyze_writing, list_products, get_free_skill). Even reading_time and social_length_check follow the pattern, albeit with nouns first, but the style is uniform and predictable.

Tool Count5/5

With 8 tools, the server is well-scoped. It covers both content analysis (4 tools) and product catalog access (4 tools) without overloading or underrepresenting either domain. The number feels appropriate for a focused studio toolkit.

Completeness4/5

The tool set covers the core functions of a Creator Studio: writing analysis, headline optimization, reading time, social length checks, plus full product catalog introspection. Minor gaps like grammar checking or content generation exist but are outside the stated scope. The set has no dead ends for the intended workflows.

Resources