Skip to main content
Glama

sprkly-mcp

Get TikTok posting options

sprkly_get_tiktok_posting_options
Read-only

This creator's allowed TikTok privacy levels and interaction settings, fetched live from TikTok. You usually do NOT need this before scheduling: sprkly_schedule_post checks privacyLevel against this same list itself and, when it is wrong, returns the levels that would work. Call this only when the user asks what their options are, or you want to offer them a choice.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
profile_idYesThe TikTok profile id to query, from sprkly_list_profiles.

TDQS

A4.4/5.0
Behavior4/5

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

The annotations already declare readOnlyHint=true, so the description need not restate this. The description adds useful context: the data is fetched live from TikTok (implying potential latency or external dependency), and it notes that schedule_post already handles validation internally, which clarifies the tool's role. It does not disclose error behavior or return format, but given the read-only annotation and simple scope, the description adds sufficient behavioral insight without contradiction.

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 exactly two sentences without any filler. The first sentence states the purpose and data source; the second provides actionable usage guidance. It is front-loaded and every word earns its place, making it highly concise and well-structured.

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 simple read-only tool with one parameter and no output schema, the description is complete enough. It explains what data is returned (privacy levels and interaction settings), when to use it, and its relationship to schedule_post. The absence of output schema means the description could specify the exact return shape, but the given information is sufficient for an agent to correctly invoke the tool and understand its purpose.

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?

The input schema has 100% coverage: the only parameter, profile_id, has a description explaining its source ('from sprkly_list_profiles'). The tool description does not add further semantics beyond that. With the schema already providing clear meaning, a baseline of 3 is appropriate.

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 clearly states the purpose: it fetches the creator's allowed TikTok privacy levels and interaction settings. It uses a specific verb ('fetched') and resource ('privacy levels and interaction settings'), and it distinguishes itself from siblings by focusing on posting options for a specific TikTok profile. The mention of 'live from TikTok' adds clarity about data freshness.

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 NOT to use it ('usually do NOT need this before scheduling') and provides the alternative (sprkly_schedule_post validates the same list itself and returns valid levels on error). It then gives precise conditions for when to call: when the user asks for options or you want to offer a choice. This is exemplary usage guidance.

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