socialclaw
Server Details
Connect any AI agent to 11+ social platforms: schedule, publish & track posts via hosted MCP.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- ndesv21/socialclaw
- GitHub Stars
- 60
- Server Listing
- socialclaw
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 3.6/5 across 18 of 18 tools scored. Lowest: 2.7/5.
Each tool targets a distinct operation (e.g., connecting accounts, listing posts, validating schedules) with no overlapping functionality. Even closely related tools like 'validate_schedule' and 'apply_schedule' are clearly separated by purpose.
All tool names follow a consistent 'verb_noun' pattern in snake_case, making it easy for an agent to predict tool names and understand their actions. No mixing of conventions.
18 tools is a well-scoped count for a social media management server. Each tool addresses a specific aspect of the domain (accounts, posts, scheduling, assets, analytics) without unnecessary bloat or missing essentials.
The tool set covers the full lifecycle: account connection and management, asset upload, schedule validation, post creation via schedules, publishing, cancellation, retry, analytics, and workspace health. No obvious gaps exist for the intended schedule-driven publishing model.
Available Tools
18 toolsaccount_capabilitiesAInspect
Get publish capabilities and provider rules for connected accounts: what media is allowed, text limits, and whether publishing is currently possible. Pass accountId for one account, or provider to filter, or neither for all.
| Name | Required | Description | Default |
|---|---|---|---|
| provider | No | Optional provider filter. | |
| accountId | No | Optional account id. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so description carries burden. It describes the result but does not disclose behavioral traits like read-only nature, authentication requirements, or side effects. Adequate but not detailed.
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?
Two sentences with no wasted words. Critical information is front-loaded: 'Get publish capabilities and provider rules' immediately states the action and subject.
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?
Despite no output schema, description adequately explains return values (media allowed, text limits, publishing possibility). With two optional parameters and clear filtering logic, the description is complete for agent use.
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?
Schema coverage is 100% (both parameters described). Description adds value by explaining how to combine parameters ('for one account', 'to filter', 'for all'), going beyond minimal schema descriptions.
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?
Description clearly states the tool gets publish capabilities and provider rules, listing specific aspects (media allowed, text limits, publishing feasibility). It also explains filtering options, making the purpose unambiguous.
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?
Provides clear usage instructions: pass accountId for one account, provider to filter, or neither for all. Lacks explicit when-not-to-use or alternative tools, but context and sibling list imply uniqueness.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
apply_scheduleAInspect
Create a publishing run from a schedule document. Posts are scheduled or published through connected accounts. Send an idempotencyKey so retries do not create duplicate runs.
| Name | Required | Description | Default |
|---|---|---|---|
| schedule | Yes | SocialClaw schedule document. Minimal shape: { timezone, posts: [{ account, name, description, publish_at, media_link? }] }. Campaign documents use { timezone, campaigns: [...] }. Per-post provider settings go in settings, e.g. TikTok drafts: settings: { tiktokPostMode: "draft" } uploads the media to the account's TikTok drafts (inbox) instead of publishing, and the creator finishes the post inside the TikTok app. | |
| idempotencyKey | No | Stable key to deduplicate retries. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description must cover behavioral traits. It mentions idempotency for retries but lacks details on destructive actions, permissions, or error behavior.
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?
Three sentences, front-loaded with main action, followed by context and guidance. Efficient and no 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?
Covers key aspects for a 2-param tool, but missing output description (e.g., returns run ID) and error scenarios. Minor gap.
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?
With 100% schema coverage, the description adds rich context beyond the schema, including minimal shape, campaign documents, and per-post settings example. IdempotencyKey is also explained.
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 the tool creates a publishing run from a schedule document, using specific verbs and resources. It is distinct from siblings like validate_schedule or preview_campaign.
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?
Implied usage for scheduling/publishing but no explicit guidance on when to use vs alternatives or when not to use. The idempotency key hint is helpful for retries.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cancel_postBInspect
Cancel a scheduled post before it publishes.
| Name | Required | Description | Default |
|---|---|---|---|
| postId | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It conveys basic behavior (cancels scheduled posts before publication) but omits details like irreversibility or post status requirements.
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?
Single sentence, front-loaded, efficient. However, it could include more detail without sacrificing conciseness.
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?
Given low complexity, description covers core functionality but lacks context on prerequisites, side effects, or error conditions.
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?
Schema coverage is 0% and description adds no parameter-level meaning; postId is not explained.
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 the action (cancel) and resource (scheduled post before it publishes), distinguishing it from sibling tools like publish_draft or retry_post.
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?
No guidance on when to use this tool versus alternatives; no exclusions or prerequisites mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
connect_accountAInspect
Start connecting a new social account. For OAuth providers this returns an authorizeUrl the user must open in a browser. Telegram requires botToken and chatId; Discord requires webhookUrl.
| Name | Required | Description | Default |
|---|---|---|---|
| chatId | No | Telegram chat target, e.g. @yourchannel (telegram only). | |
| botToken | No | Telegram bot token (telegram only). | |
| provider | Yes | Provider to connect. | |
| webhookUrl | No | Discord channel webhook URL (discord only). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description explains key behavioral traits: for OAuth it returns an authorizeUrl, for Telegram requires specific params, for Discord requires webhookUrl. It does not detail all side effects or the complete connection flow, but it covers the primary behavior adequately.
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?
Two sentences, no wasted words. First sentence states the purpose, second sentence adds provider-specific details. Information is front-loaded and easy to parse.
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 description covers the main use cases (OAuth, Telegram, Discord) and their parameter requirements. It doesn't elaborate on error handling or the full connection process, but given the tool's complexity and no output schema, it is sufficiently complete.
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?
All parameters have schema descriptions (100% coverage), so baseline is 3. The description adds value by grouping parameters per provider (Telegram needs botToken+chatId, Discord needs webhookUrl), providing context beyond individual field descriptions.
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 the purpose: 'Start connecting a new social account.' It distinguishes between OAuth providers (returning authorizeUrl) and specific requirements for Telegram and Discord, making the tool's functionality unambiguous.
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 provides explicit context for when to use this tool (starting a connection) and what to expect for each provider type. However, it does not mention when not to use it or suggest alternative tools among siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_analyticsAInspect
Get analytics snapshots for a post, an account, or a run. scope must be post, account, or run; id is the matching identifier.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| scope | Yes | ||
| window | No | Optional analytics window, e.g. 7d. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description bears full responsibility for behavioral disclosure. It only states the purpose and parameter constraints but does not mention that the tool is read-only, what data is returned, or any other behavioral traits like rate limits or side effects.
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 a single sentence plus a brief clarification. It is front-loaded with the purpose and wastes no words. Every sentence adds value.
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?
Given the tool's simplicity (3 parameters, no nested objects, no output schema) and lack of annotations, the description is minimally adequate. It explains what the tool does and the required parameters but does not describe the return format, what a 'snapshot' means, or any further usage context.
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?
The schema description coverage is low (33%: only 'window' has a description). The description adds context for 'scope' (enumerated values) and 'id' (matching identifier), which is helpful but does not fully compensate for the missing schema descriptions. 'window' is already described in the schema, so no added value for that parameter.
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 the tool retrieves analytics snapshots for three specific resources (post, account, run). It uses a specific verb ('Get') and distinguishes from sibling tools like 'get_post' or 'account_capabilities' which are about different types of data.
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 gives basic guidance on the required parameters (scope must be post/account/run, id is identifier) but does not provide context on when to use this tool versus sibling tools like 'workspace_usage' or 'account_capabilities'. There is no explicit when-not or alternative specification.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_postCInspect
Get one post including its delivery state and provider identifiers.
| Name | Required | Description | Default |
|---|---|---|---|
| postId | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description must fully disclose behavior. It states what the tool returns (delivery state and provider identifiers) but does not mention whether it is read-only, any required permissions, rate limits, or side effects. The description is somewhat informative but lacks transparency on key behavioral traits.
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 a single concise sentence and front-loaded with the primary purpose. However, it omits useful information that could be added without bloat (e.g., parameter details, usage context). It is adequately sized but not optimized for completeness.
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?
Given no output schema and no annotations, the description is insufficient. It lacks details on return value structure beyond two fields, does not explain error conditions, and does not cover how the tool fits into workflows. For a simple tool with few parameters, it is barely adequate but leaves significant gaps.
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?
The single parameter (postId) has 0% schema description coverage, and the description adds no additional meaning about it, e.g., its format, uniqueness, or how to obtain it. The description only discusses output, not the parameter, leaving the agent underinformed about how to use postId correctly.
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 the action (get), resource (one post), and specific data included (delivery state and provider identifiers). It distinguishes from sibling tools like list_posts (which retrieves multiple posts) and cancel_post (a mutation), making the purpose unambiguous.
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 provides no guidance on when to use this tool versus siblings (e.g., list_posts for multiple posts, post_attempts for status history). The agent is left to infer usage without explicit context or alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_accountsAInspect
List connected social accounts in the SocialClaw workspace. Optionally filter by provider (x, facebook, instagram_business, instagram, linkedin, linkedin_page, pinterest, tiktok, telegram, discord, youtube, reddit, wordpress).
| Name | Required | Description | Default |
|---|---|---|---|
| provider | No | Optional provider filter. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden for behavioral disclosure. It only states the basic function and does not mention side effects, permissions, rate limits, pagination, or any other behavioral traits beyond the obvious read operation.
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 extremely concise with two sentences, front-loading the action and resource. Every word earns its place; no filler.
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?
Given the tool's simplicity (one optional parameter, no output schema), the description is almost complete. It could mention that it returns a list of account objects, but this is acceptable without an output schema.
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?
With 100% schema coverage, the baseline is 3. The description adds a list of valid provider examples (x, facebook, instagram_business, etc.), which adds significant meaning beyond the schema's 'Optional provider filter.' description.
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 the action ('list') and the resource ('connected social accounts in the SocialClaw workspace'), with an optional filter by provider. This distinguishes it from sibling tools like 'connect_account' which would create or modify 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 implies usage for viewing connected accounts, with optional provider filtering. However, it does not provide explicit guidance on when to use versus alternatives (e.g., when to list vs. other account-related tools), nor does it specify when not to use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_assetsAInspect
List media (images/videos) the user has uploaded to their SocialClaw library, newest first. Each asset includes a publicUrl usable directly as media_link in validate_schedule/apply_schedule. Use this to find a previously uploaded file (e.g. from the dashboard) to post. Optionally filter by kind (image/video), mime, or a text query over filename/id.
| Name | Required | Description | Default |
|---|---|---|---|
| kind | No | Filter by media kind: image or video. | |
| mime | No | Optional mime prefix filter, e.g. video/mp4. | |
| sort | No | created_desc (default, newest first) or created_asc. | |
| limit | No | Maximum assets to return. Defaults to 24, capped at 48. | |
| query | No | Optional text match over filename, id, kind, mime, or url. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. Mentions sorting and filtering, but lacks details on pagination beyond limit cap, rate limits, or any potential side effects. Adequate but not exhaustive.
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?
Two concise sentences with no fluff. Front-loaded with purpose and key usage details. Every sentence adds value.
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?
No output schema, so description should compensate by describing return fields. Mentions publicUrl and usability, but omits other asset properties (id, filename, etc.) and pagination behavior. Moderate completeness.
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?
Schema coverage is 100% with clear parameter descriptions. The description adds minimal extra meaning by mentioning publicUrl usage and query field scope, but largely restates schema information.
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 the tool lists uploaded media (images/videos) from the SocialClaw library, sorts newest first, and mentions the publicUrl can be used in validate_schedule/apply_schedule, distinguishing it from sibling tools like upload_asset.
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?
Explicitly states use case: finding previously uploaded files to post, and that assets can be used in scheduling tools. Provides clear context for when to use, though no exclusions or alternatives beyond what sibling tools imply.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_postsCInspect
List posts in the workspace with optional filters.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum posts to return. Defaults to 20 and is capped at 50. | |
| runId | No | ||
| offset | No | Offset for paging through results. | |
| status | No | e.g. scheduled, published, failed, canceled. | |
| account | No | Account handle filter. | |
| provider | No | ||
| campaignId | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, and the description does not disclose behavioral traits such as pagination behavior, rate limits, or any side effects. The schema includes a default and cap for limit, but the description does not explain this.
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 very short with no wasted words. However, it could be slightly more structured to front-load key information about filtering and limits.
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?
Given the tool has 7 parameters, no output schema, and no annotations, the description is insufficient. It lacks details on pagination, ordering, return format, and any behavioral caveats.
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?
The description mentions 'optional filters' but does not explain the meaning or usage of individual parameters beyond what the schema provides. With 57% schema description coverage, the description adds minimal value.
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 the tool lists posts in a workspace with optional filters. It uses a specific verb and resource, and the scope is implied. However, it does not differentiate from siblings like list_accounts or get_post.
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?
No guidance on when to use this tool versus alternatives. Sibling tools include get_post for a single post and other list tools, but no context is provided for choosing this tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
post_attemptsBInspect
List publish attempts for a post, including provider errors. Use this to debug failed posts.
| Name | Required | Description | Default |
|---|---|---|---|
| postId | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It doesn't disclose whether it's read-only, rate limits, error behavior for invalid postId, or the structure of the response, leaving significant gaps.
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?
Two sentences, each essential, front-loaded with the primary action, no fluff.
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?
While the purpose is clear, the description lacks details about the return format or any error handling, which would be helpful for a debugging tool without an output schema.
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?
Schema description coverage is 0% and the description does not explain the postId parameter beyond its name, failing to add meaning or format constraints.
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 the tool lists publish attempts for a post, including provider errors, which distinguishes it from siblings like list_posts (lists all posts) and get_post (gets a single post).
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?
Explicitly says 'Use this to debug failed posts', providing clear context. Doesn't explicitly state when not to use, but the use case is well-defined among siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
preview_campaignAInspect
Preview how a campaign schedule document expands into concrete posts and steps without creating anything.
| Name | Required | Description | Default |
|---|---|---|---|
| schedule | Yes | SocialClaw schedule document. Minimal shape: { timezone, posts: [{ account, name, description, publish_at, media_link? }] }. Campaign documents use { timezone, campaigns: [...] }. Per-post provider settings go in settings, e.g. TikTok drafts: settings: { tiktokPostMode: "draft" } uploads the media to the account's TikTok drafts (inbox) instead of publishing, and the creator finishes the post inside the TikTok app. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full behavioral disclosure. It clearly indicates the tool is non-destructive ('without creating anything'). However, it does not specify whether the preview returns the expanded posts/steps, any required authentication, or rate limits. Still, the core behavioral trait (read-only) is effectively communicated.
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?
A single sentence that conveys the essential purpose without any extraneous words. Every word is meaningful, and the structure is front-loaded with the action and key constraint.
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?
Despite having only one parameter and a clear purpose, the description lacks details about the output (e.g., what 'expands into concrete posts and steps' means in practice, the return format). Without an output schema, agents may need to infer behavior. The absence of annotations also leaves some behavioral context missing, such as idempotency or access requirements.
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?
Schema description coverage is 100% and the parameter 'schedule' already has a detailed description including minimal shape and settings examples. The tool description does not add additional parameter semantics beyond the context of the overall preview action. Baseline 3 is appropriate as the schema handles the parameter explanation.
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 the verb ('Preview'), the resource ('campaign schedule document'), and the outcome ('expands into concrete posts and steps without creating anything'). It distinguishes this from sibling tools like 'apply_schedule' and 'validate_schedule' by emphasizing its non-destructive preview nature.
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 implies usage for dry-run exploration ('without creating anything') but does not explicitly state when to use this tool versus alternatives such as 'apply_schedule' or 'validate_schedule'. No direct exclusions or when-not-to-use guidance is provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
publish_draftBInspect
Publish a previously created draft run, optionally at a given ISO-8601 start time.
| Name | Required | Description | Default |
|---|---|---|---|
| runId | Yes | Draft run id. | |
| startAt | No | Optional ISO-8601 publish start time. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations exist, so the description carries full burden. It does not disclose side effects, permissions, error states, or result behavior, leaving significant unknowns.
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?
Single sentence with 14 words, no fluff, efficiently communicates core action and optional parameter. Could add more value without sacrificing brevity.
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?
Missing output schema and no description of return value, error conditions, or prerequisites. For a simple two-param tool, it lacks completeness needed for safe invocation.
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?
Schema coverage is 100%, providing baseline adequacy. The description adds only slight clarification ('ISO-8601' for startAt), but does not enrich beyond the schema descriptions.
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 the verb 'publish' and the object 'previously created draft run', with an optional start time. It distinctly differentiates from sibling tools like 'apply_schedule' or 'retry_post'.
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?
No guidance on when to use this tool vs alternatives, no prerequisites mentioned, and no exclusion criteria provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
retry_postCInspect
Retry a failed post.
| Name | Required | Description | Default |
|---|---|---|---|
| postId | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, so the description must convey all behavioral expectations. It only states 'retry a failed post' without explaining side effects, idempotency, or return values. The agent cannot infer whether existing entries are modified or new attempts are created.
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 extremely concise at five words and directly addresses the tool's primary purpose. However, it lacks any structural elements like sections or bullet points, which could aid readability for complex operations.
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?
Given the absence of an output schema and annotations, the description should provide more context about the tool's behavior and return values. It does not cover when a retry is applicable, potential errors, or the outcome of the operation.
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?
Schema coverage is 0%, and the description adds no extra meaning to the single parameter 'postId'. While the parameter name is somewhat self-explanatory, the description does not clarify expected formats, constraints, or the relationship to the failed post.
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 specifies the action 'retry' and the resource 'a failed post', clearly indicating the tool's function. However, it does not differentiate from sibling tools like 'cancel_post' or 'post_attempts', which could be confused for similar operations.
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?
No guidance is provided on when to use this tool versus alternatives. There are no prerequisites, exclusions, or context for appropriate usage, leaving the agent without decision-making support.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
run_statusCInspect
Get the status summary of a publishing run and its posts.
| Name | Required | Description | Default |
|---|---|---|---|
| runId | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It only implies a read operation via 'Get' but does not explicitly state it is non-destructive, nor does it mention any behavioral traits such as required permissions or potential side effects.
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 a single sentence of 10 words, extremely concise and front-loaded with the action. Every word earns its place—no redundancy.
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 description lacks key details: no output schema means the agent doesn't know what the status summary contains (fields, structure). The parameter is unexplained. Given the tool's specificity, more context about the run concept and expected output would be needed for full completeness.
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?
Schema description coverage is 0%, and the description adds no meaning beyond the schema. The 'runId' parameter is not explained—what it is, how to obtain it, or format expectations. This leaves the agent with no extra context.
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 the action ('Get the status summary') and the resource ('a publishing run and its posts'). It effectively distinguishes from sibling tools like 'get_post' (single post) and 'list_posts' (list of posts), which focus on individual posts rather than a run's overall status.
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?
No guidance is provided on when to use this tool versus alternatives. There is no mention of prerequisites, context, or exclusions, leaving the agent without decision-making support.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
upload_assetAInspect
Upload media (image or video) to SocialClaw hosted storage. Provide either sourceUrl (a public URL the server downloads) or contentBase64. Returns an asset id and a public URL usable as media_link in schedules.
| Name | Required | Description | Default |
|---|---|---|---|
| filename | Yes | Filename including extension, e.g. launch.png. | |
| sourceUrl | No | Public URL to download the media from. | |
| contentBase64 | No | Base64-encoded file content (alternative to sourceUrl). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It discloses the two input methods and output, but omits details like file size limits, supported formats beyond image/video, authentication needs, or whether uploads are persistent. Additional transparency would improve the score.
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?
Description is two sentences, 34 words, front-loaded with the core purpose. Every sentence provides essential information with no redundancy or fluff.
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?
For a 3-parameter tool with no output schema, the description adequately covers what the tool does and what it returns. It lacks details on error handling and size limits, but is sufficient for an AI agent to decide to invoke this tool.
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?
Schema coverage is 100%, but the description adds value by clarifying the mutual exclusivity of sourceUrl and contentBase64, and explaining that sourceUrl is a public URL the server downloads. This goes beyond the schema descriptions.
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 the action ('upload'), resource ('media'), and target ('SocialClaw hosted storage'). It specifies the two input methods and the return values, distinguishing it from sibling tools which have different purposes.
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 implies usage when needing to upload media for schedules, but does not explicitly mention when not to use it or alternative tools. Since no similar upload tool exists among siblings, the guidance is clear but lacks exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
validate_scheduleAInspect
Validate a schedule document against provider rules, media limits, account state, and publish times WITHOUT creating any posts. Always run this before apply_schedule.
| Name | Required | Description | Default |
|---|---|---|---|
| schedule | Yes | SocialClaw schedule document. Minimal shape: { timezone, posts: [{ account, name, description, publish_at, media_link? }] }. Campaign documents use { timezone, campaigns: [...] }. Per-post provider settings go in settings, e.g. TikTok drafts: settings: { tiktokPostMode: "draft" } uploads the media to the account's TikTok drafts (inbox) instead of publishing, and the creator finishes the post inside the TikTok app. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It explicitly states the tool does NOT create posts, clarifying its non-destructive nature. However, it does not mention potential side effects, rate limits, or return behavior, which could be added.
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?
Single sentence with critical usage instruction front-loaded. No fluff; every word adds value. Excellent conciseness.
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?
Description covers what the tool does, what it validates, and its relationship to apply_schedule. Missing information about return values or error handling, but given no output schema, it is reasonably complete.
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?
Schema description covers 100% of the parameter, and the description adds further details about the minimal shape of the schedule object, including campaign documents and per-post provider settings, enhancing understanding.
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?
Description clearly states the tool validates a schedule document against specific rules (provider rules, media limits, account state, publish times) and explicitly notes it does not create posts, distinguishing it from apply_schedule. Verb+resource+scope are all clear.
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?
Explicitly instructs to 'Always run this before apply_schedule,' providing strong usage context. Does not mention when not to use or alternative tools, but the sibling context makes it clear that apply_schedule is the only alternative.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
workspace_healthAInspect
Get workspace health, including connection state across providers. Pass provider to check one provider's connections.
| Name | Required | Description | Default |
|---|---|---|---|
| provider | No | Optional provider to check connection health for. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It states the tool retrieves workspace health and mentions connection state, but does not disclose behavioral traits such as whether it is read-only, requires authentication, or has rate limits. The description is minimal beyond purpose.
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 with zero waste. It front-loads the primary action and then provides usage guidance for the optional parameter. Every word is necessary.
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?
Given the tool's simplicity (one optional parameter, no output schema), the description completely explains what the tool does and how to use the parameter. No critical information is missing.
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?
The schema coverage is 100% for the single parameter 'provider', which already describes its purpose. The description adds marginal value by restating that passing provider checks one provider's connections. Baseline is 3 due to high coverage.
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 'Get workspace health' with a specific verb and resource. It adds 'including connection state across providers', distinguishing it from sibling tools like 'run_status' or 'workspace_usage' that focus on different aspects.
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 implies usage by saying 'Pass provider to check one provider's connections', but does not explicitly state when to use this tool versus alternatives like 'connect_account' or 'get_analytics'. No exclusions or when-not are provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
workspace_usageAInspect
Get workspace usage counters and plan entitlement consumption.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must fully disclose behavior. It implies a read operation ('Get'), but does not mention safety, permissions, rate limits, or any side effects. The term 'entitlement consumption' could be ambiguous.
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?
Single sentence, 8 words, front-loaded with the verb. No extraneous information. Every word earns its place.
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?
Given no parameters and no output schema, the description is adequate but minimal. It does not explain what counters are provided or how to interpret 'plan entitlement consumption'. Behavioral details are lacking.
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 zero parameters, so baseline is 4. The description adds no parameter-specific meaning because none exist.
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 the action ('Get') and the resource ('workspace usage counters and plan entitlement consumption'). It is specific and distinct from sibling tools like 'workspace_health' or 'get_analytics', which serve different purposes.
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?
No guidance on when to use this tool versus alternatives. For example, it does not explain when to prefer this over 'get_analytics' or 'workspace_health'. No exclusions or context provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Your Connectors
Sign in to create a connector for this server.