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
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.5/5 across 17 of 17 tools scored. Lowest: 2.6/5.
Each tool targets a distinct operation: account management, posting lifecycle (create via schedule, cancel, retry, status), analytics, workspace health, and asset upload. There is no functional overlap; even scheduling-related tools (validate, preview, apply) serve clear sequential stages.
All tool names follow a consistent verb_noun pattern in snake_case (e.g., connect_account, list_accounts, upload_asset, validate_schedule). The naming is predictable and uniform, making it easy for an agent to infer tool purpose from the name.
Seventeen tools is well-scoped for a social media management server. The count covers all major aspects: account connections, posting, scheduling, analytics, workspace monitoring, and asset handling, without feeling bloated or sparse.
The tool surface covers the full lifecycle: account setup (connect_account, list_accounts), content creation and scheduling (validate_schedule, preview_campaign, apply_schedule), publishing (publish_draft, cancel_post, retry_post), monitoring (get_post, list_posts, post_attempts, run_status, get_analytics), and maintenance (workspace_health, workspace_usage, upload_asset). No obvious gaps for core operations.
Available Tools
17 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: [...] }. | |
| 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 carries full burden. Discloses that posts are scheduled/published through connected accounts and mentions idempotency for retries. Lacks details on failure modes, asynchronous behavior, or side effects beyond creating a run.
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, no waste. Front-loaded with primary action. Efficient and clear.
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?
Adequate for a simple tool with 2 params, but no output schema means return value is unspecified. Lacks info on errors, prerequisites, or post-run behavior, leaving gaps for an agent.
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%, baseline 3. Description adds value by explaining the purpose of idempotencyKey and providing minimal shape details for the schedule parameter, which enhances understanding beyond the schema.
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?
Clearly states it creates a publishing run from a schedule document, specifying the action (create) and resource (publishing run from schedule). Distinguishes from sibling tools like validate_schedule and publish_draft by focusing on multiple posts from a document.
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 multiple posts from a schedule document. Mentions idempotencyKey for retries, but no explicit when-to-use or when-not-to-use vs alternatives like publish_draft or retry_post.
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_postsCInspect
List posts in the workspace with optional filters.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| runId | No | ||
| 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 provided, so description carries full burden. It only says 'list posts' with no mention of pagination, ordering, data freshness, or any side effects. Minimal behavioral info.
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, concise but too vague. Does not earn its place due to lack of informative content beyond the obvious.
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 6 optional params, no output schema, and many sibling tools, the description is insufficient. Doesn't explain return value, filter behavior, or use 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?
Schema coverage is 33% (only status and account have descriptions). The description adds no detail beyond 'optional filters', leaving 4 parameters (limit, runId, provider, campaignId) unexplained.
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 'list posts in the workspace with optional filters', specifying the verb (list), resource (posts), and scope (workspace). It distinguishes from siblings like get_post (single post) and list_accounts (different resource).
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 (e.g., get_post for single post, cancel_post for cancellation). No when-not or context for choosing this tool over siblings.
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: [...] }. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description states the key behavioral trait 'without creating anything', indicating it is non-destructive. But it lacks details on other behaviors like read-only nature, rate limits, or output characteristics.
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 that front-loads the core purpose, with no wasted words. Every element contributes to understanding the tool's function.
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 simple tool with one parameter and no output schema, the description covers its purpose and non-destructive nature. It implies the output is an expanded view, which is adequate for understanding. Could specify output format but not strictly necessary.
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%, and the schema description already details the parameter shape. The tool description adds no additional meaning to the parameter, merely restating its role. Baseline 3 is appropriate.
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' and the resource 'campaign schedule document', explaining what it does: expand into posts and steps without creating anything. This distinguishes it from sibling tools like 'apply_schedule' and 'validate_schedule'.
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 before actual scheduling to see expansion, and explicitly notes it does not create anything. However, it does not mention when not to use it or suggest alternatives like 'validate_schedule' for validation.
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: [...] }. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses that no posts are created and lists validation dimensions (provider rules, media limits, account state, publish times). However, with no annotations, it fails to describe what happens on validation failure (e.g., error responses) or the output format, leaving a transparency gap.
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, zero waste. Purpose and usage guidance are front-loaded and efficient. Every sentence serves a clear role.
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 validation purpose and prerequisite guidance well, but lacks critical information about return value or error behavior. Since no output schema exists, the description should clarify what the tool returns (e.g., success status, error messages) to be fully 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 already describes 'schedule' with 100% coverage. Description adds value by specifying minimal shape (timezone, posts array with fields) and alternative campaign shape, enhancing understanding beyond the schema's generic 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?
Clear verb 'validate' with specific resource 'schedule document' and explicit statement of what it does (validate against rules, limits, state, time) and what it does NOT do (create posts). Distinguishes from sibling 'apply_schedule' by advising to run before it.
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 advises 'Always run this before apply_schedule,' providing clear when-to-use guidance. Does not mention when not to use or alternative tools, but the directive is strong and practical.
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!