Skip to main content
Glama

sprkly-mcp

Validate against platform rules

sprkly_validate_post_policy
Read-only

Check a caption against each target platform's posting rules before scheduling: caption length, media requirements, hashtag ceilings, whether links are clickable, required YouTube titles, and PII or prohibited-content warnings. Pure analysis. Writes nothing.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleNoPost title. Required for YouTube, max 100 characters.
captionYesThe caption to check.
hashtagsNoHashtags posted alongside the caption, if they are not already in it.
platformsYesTarget platforms to check against.
platformMetaNoPlatform-specific publishing options, keyed by platform.
mediaUrlsCountNoHow many images or videos will be attached. Instagram and TikTok require at least one.

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already mark readOnlyHint=true, and the description reinforces this with 'Pure analysis. Writes nothing.' It adds behavioral context about what the validation covers (e.g., PII/prohibited-content warnings), going beyond the annotation. However, it does not describe the exact return format or behavior on violations.

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?

The description is two sentences, front-loaded with the core purpose and follow-through with 'Pure analysis. Writes nothing.' Every clause adds value; no fluff or repetition of schema field names.

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 validation tool with 6 parameters and no output schema, the description covers the main inputs and behavior. It lacks explicit mention of what the function returns (e.g., a list of violations vs. a pass/fail flag), but the mention of 'warnings' and the overall scope is sufficient for an agent to invoke it correctly.

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

Parameters4/5

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

Schema description coverage is 100%, so the baseline is 3. The description adds meaning by tying parameters to validation rules (caption length, media requirements, hashtag ceilings, YouTube titles), which helps select and populate the correct parameters. It does not detail platformMeta, but the schema already describes it.

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 ('Check a caption') and a clear resource ('against each target platform's posting rules'), enumerating concrete checks (caption length, media requirements, hashtag ceilings, clickable links, YouTube titles, PII/prohibited-content warnings). This clearly distinguishes it from sibling scheduling, drafting, and deletion tools.

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?

'before scheduling' gives a clear when-to-use context, and 'Pure analysis. Writes nothing' implies it should be used for validation before mutation tools like sprkly_schedule_post. It does not explicitly name alternatives when not to use it, but the context is strong enough.

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.1/5.0
Disambiguation4/5

Most tools target distinct resources and actions, and detailed descriptions make subtle differences clear. Minor ambiguity exists between sprkly_list_profiles and sprkly_list_connected_social_accounts, and between sprkly_get_post_status and sprkly_get_post_approval_status, but the descriptions provide enough context to disambiguate.

Naming Consistency5/5

All tools share the sprkly_ prefix and use a snake_case verb_noun pattern. Read operations are consistently split between get_ for singular/detail and list_ for plural collections, with action verbs like schedule, draft, delete, request, and validate following the same clear style.

Tool Count4/5

18 tools is on the heavier side, but the server covers a broad social media workflow spanning scheduling, approvals, analytics, billing, and automation templates. A few tools are explicitly optional, like sprkly_add_media_from_url and sprkly_get_tiktok_posting_options, so the set could be tightened slightly, but the count remains defensible for the scope.

Completeness4/5

The core post lifecycle is well covered: draft, validate, schedule, update, delete, get status, and approval flow. Minor gaps exist around draft/media library management and automation template listing/deletion, but agents can accomplish the main scheduling tasks without dead ends.

Resources