List posting targets
sprkly_list_profilesThe profile ids needed to target a post, with each one's platform and handle. Call this before sprkly_schedule_post.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
sprkly_list_profilesThe profile ids needed to target a post, with each one's platform and handle. Call this before sprkly_schedule_post.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare readOnlyHint=true, so the description does not need to emphasize that. The description adds context about what the output contains (profile IDs, platform, handle) and its prerequisite role. It does not disclose potential nuances like whether it includes all accounts or only those eligible for posting, but with readOnlyHint, the bar is lower and this is adequate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the core purpose and ending with explicit guidance to call it before scheduling. Every sentence earns its place, zero waste.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple with no parameters and a readOnlyHint annotation. The description tells the agent what it returns and when to use it. Without an output schema, it could benefit from explaining what 'posting targets' are exactly (e.g., social media profiles) but the description does this. It is complete enough for its purpose.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There are 0 parameters, so the schema provides no parameter information. The baseline for 0 parameters is 4, and the description does not need to add parameter semantics. It does explain the output (profile IDs, platform, handle), which is useful.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states what the tool does: it lists posting targets (profile IDs) with platform and handle, needed for targeting a post. It explicitly names the resource (posting targets) and the purpose (provide profile IDs for targeting), distinguishing it from sibling tools like sprkly_list_connected_social_accounts.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly states when to use this tool: 'Call this before sprkly_schedule_post.' However, it does not explicitly say when not to use it or mention alternatives (like sprkly_list_connected_social_accounts), though its specific purpose implies it for scheduling.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
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.
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.
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.
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.