Skip to main content
Glama

Server Details

Manage Threads from your AI assistant

Ownership verified
Status
Unhealthy
OAuth
Works in Glama
Last Tested
Transport
Streamable HTTP
URL

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 3 tool updates
    • Changedcreate_post2 fields changed
      • addedInput schema / properties / posts / items / properties / isSpoilerMedia
        Added value: +{
        +  "description": "If true, all media in this post is marked as a spoiler (Threads only). Media is blurred until tapped.",
        +  "type": "boolean"
        +}
      • addedInput schema / properties / posts / items / properties / spoilerRanges
        Added value: +{
        +  "description": "Optional text spoiler ranges (Threads only). Max 10 per post. Each range marks a portion of text as a spoiler that is hidden until tapped.",
        +  "items": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "length": {
        +        "description": "Number of characters in the spoiler range",
        +        "type": "number"
        +      },
        +      "offset": {
        +        "description": "Character offset (0-indexed) where the spoiler starts",
        +        "type": "number"
        +      }
        +    },
        +    "required": [
        +      "offset",
        +      "length"
        +    ],
        +    "type": "object"
        +  },
        +  "type": "array"
        +}
    • Changededit_post2 fields changed
      • addedInput schema / properties / isSpoilerMedia
        Added value: +{
        +  "description": "Set media spoiler flag (Threads only). true = all media blurred, false = remove spoiler. Omit to keep unchanged.",
        +  "type": "boolean"
        +}
      • addedInput schema / properties / spoilerRanges
        Added value: +{
        +  "description": "Replace text spoiler ranges (Threads only). Max 10 per post. Omit to keep existing spoilers unchanged. Pass empty array to remove all spoilers.",
        +  "items": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "length": {
        +        "description": "Number of characters in the spoiler range",
        +        "type": "number"
        +      },
        +      "offset": {
        +        "description": "Character offset (0-indexed) where the spoiler starts",
        +        "type": "number"
        +      }
        +    },
        +    "required": [
        +      "offset",
        +      "length"
        +    ],
        +    "type": "object"
        +  },
        +  "type": "array"
        +}
    • Changededit_thread2 fields changed
      • addedInput schema / properties / posts / items / properties / isSpoilerMedia
        Added value: +{
        +  "description": "If true, all media in this post is marked as a spoiler (Threads only).",
        +  "type": "boolean"
        +}
      • addedInput schema / properties / posts / items / properties / spoilerRanges
        Added value: +{
        +  "description": "Optional text spoiler ranges (Threads only). Max 10 per post.",
        +  "items": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "length": {
        +        "description": "Number of characters in the spoiler range",
        +        "type": "number"
        +      },
        +      "offset": {
        +        "description": "Character offset (0-indexed) where the spoiler starts",
        +        "type": "number"
        +      }
        +    },
        +    "required": [
        +      "offset",
        +      "length"
        +    ],
        +    "type": "object"
        +  },
        +  "type": "array"
        +}
  2. 4 tool updates
    • Changedcreate_post2 fields changed
      • addedInput schema / properties / posts / items / properties / media
        Added value: +{
        +  "description": "Optional media to attach. Provide public URLs — the server downloads, validates (Threads specs), and uploads them.",
        +  "items": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "altText": {
        +        "description": "Alt text for accessibility",
        +        "type": "string"
        +      },
        +      "url": {
        +        "description": "Public URL of the image or video. Images: JPEG/PNG, max 8MB, max 10:1 aspect ratio. Videos: MP4/MOV, max 1GB, max 5 min, max 1920px wide.",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "url"
        +    ],
        +    "type": "object"
        +  },
        +  "type": "array"
        +}
      • removedInput schema / properties / posts / items / properties / postMedia
        Removed value: -{
        -  "description": "Optional structured media attachments",
        -  "items": {
        -    "additionalProperties": false,
        -    "properties": {
        -      "altText": {
        -        "type": "string"
        -      },
        -      "height": {
        -        "type": "number"
        -      },
        -      "mediaKey": {
        -        "type": "string"
        -      },
        -      "mimeType": {
        -        "type": "string"
        -      },
        -      "size": {
        -        "type": "number"
        -      },
        -      "width": {
        -        "type": "number"
        -      }
        -    },
        -    "required": [
        -      "mediaKey",
        -      "mimeType",
        -      "width",
        -      "height",
        -      "size"
        -    ],
        -    "type": "object"
        -  },
        -  "type": "array"
        -}
    • Changededit_post2 fields changed
      • addedInput schema / properties / media
        Added value: +{
        +  "description": "Replace all media on this post. Provide public URLs — the server downloads, validates, and uploads them. Omit to keep existing media unchanged.",
        +  "items": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "altText": {
        +        "description": "Alt text for accessibility",
        +        "type": "string"
        +      },
        +      "url": {
        +        "description": "Public URL of the image or video. Images: JPEG/PNG, max 8MB, max 10:1 aspect ratio. Videos: MP4/MOV, max 1GB, max 5 min, max 1920px wide.",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "url"
        +    ],
        +    "type": "object"
        +  },
        +  "type": "array"
        +}
      • removedInput schema / properties / postMedia
        Removed value: -{
        -  "description": "Replace all media attachments on this post. Omit to keep existing media unchanged.",
        -  "items": {
        -    "additionalProperties": false,
        -    "properties": {
        -      "altText": {
        -        "type": "string"
        -      },
        -      "height": {
        -        "type": "number"
        -      },
        -      "mediaKey": {
        -        "type": "string"
        -      },
        -      "mimeType": {
        -        "type": "string"
        -      },
        -      "size": {
        -        "type": "number"
        -      },
        -      "width": {
        -        "type": "number"
        -      }
        -    },
        -    "required": [
        -      "mediaKey",
        -      "mimeType",
        -      "width",
        -      "height",
        -      "size"
        -    ],
        -    "type": "object"
        -  },
        -  "type": "array"
        -}
    • Changededit_thread2 fields changed
      • addedInput schema / properties / posts / items / properties / media
        Added value: +{
        +  "description": "Optional media to attach. Provide public URLs — the server downloads, validates (Threads specs), and uploads them.",
        +  "items": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "altText": {
        +        "description": "Alt text for accessibility",
        +        "type": "string"
        +      },
        +      "url": {
        +        "description": "Public URL of the image or video. Images: JPEG/PNG, max 8MB, max 10:1 aspect ratio. Videos: MP4/MOV, max 1GB, max 5 min, max 1920px wide.",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "url"
        +    ],
        +    "type": "object"
        +  },
        +  "type": "array"
        +}
      • removedInput schema / properties / posts / items / properties / postMedia
        Removed value: -{
        -  "description": "Optional structured media attachments",
        -  "items": {
        -    "additionalProperties": false,
        -    "properties": {
        -      "altText": {
        -        "type": "string"
        -      },
        -      "height": {
        -        "type": "number"
        -      },
        -      "mediaKey": {
        -        "type": "string"
        -      },
        -      "mimeType": {
        -        "type": "string"
        -      },
        -      "size": {
        -        "type": "number"
        -      },
        -      "width": {
        -        "type": "number"
        -      }
        -    },
        -    "required": [
        -      "mediaKey",
        -      "mimeType",
        -      "width",
        -      "height",
        -      "size"
        -    ],
        -    "type": "object"
        -  },
        -  "type": "array"
        -}
    • Changedset_thread_follow_up2 fields changed
      • removedInput schema / properties / autoPlugMedia
        Removed value: -{
        -  "description": "Optional media attachments for the follow-up",
        -  "items": {
        -    "additionalProperties": false,
        -    "properties": {
        -      "height": {
        -        "type": "number"
        -      },
        -      "mediaKey": {
        -        "type": "string"
        -      },
        -      "mimeType": {
        -        "type": "string"
        -      },
        -      "size": {
        -        "type": "number"
        -      },
        -      "width": {
        -        "type": "number"
        -      }
        -    },
        -    "required": [
        -      "mediaKey",
        -      "mimeType",
        -      "width",
        -      "height",
        -      "size"
        -    ],
        -    "type": "object"
        -  },
        -  "type": "array"
        -}
      • addedInput schema / properties / media
        Added value: +{
        +  "description": "Optional media for the follow-up. Provide public URLs — the server downloads, validates, and uploads them.",
        +  "items": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "altText": {
        +        "description": "Alt text for accessibility",
        +        "type": "string"
        +      },
        +      "url": {
        +        "description": "Public URL of the image or video. Images: JPEG/PNG, max 8MB. Videos: MP4/MOV, max 1GB, max 5 min.",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "url"
        +    ],
        +    "type": "object"
        +  },
        +  "type": "array"
        +}
  3. 23 tool updates
    • First observedcreate_post
    • First observeddelete_thread
    • First observededit_post
    • First observededit_thread
    • First observedget_consistency
    • First observedget_daily_recap
    • First observedget_follow_up_templates
    • First observedget_follower_growth
    • First observedget_live_metrics
    • First observedget_metric_timeseries
    • First observedget_post_analytics
    • First observedget_recommendations
    • First observedget_subscription
    • First observedget_thread
    • First observedget_thread_follow_up
    • First observedget_user_settings
    • First observedlist_drafts
    • First observedlist_posts
    • First observedlist_providers
    • First observedlist_teams
    • First observedlist_time_slots
    • First observedreschedule_thread
    • First observedset_thread_follow_up

Frequently Asked Questions

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables detection and analysis of pre-public product launches through web search, content extraction, AI-powered scoring, and automated alerting. Provides comprehensive tools for surfacing stealth startup signals before they trend publicly.
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    Browse IndustryLens's published competitive-intelligence reports and head-to-head competitor comparisons from any AI agent — real, source-backed data.
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables AI chat clients to perform market research and competitive intelligence by gathering company overviews, competitor lists, product portfolios, pricing snapshots, and recent news via live Tavily search.
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.9/5.0
Disambiguation4/5

Most tools have distinct purposes targeting specific resources like posts, threads, analytics, or settings, with clear boundaries. However, some overlap exists between 'list_posts' and 'list_drafts', as drafts are a subset of posts, which could cause minor confusion in selection.

Naming Consistency5/5

Tool names follow a highly consistent verb_noun pattern throughout, such as 'create_post', 'get_thread', 'list_providers', and 'edit_post'. This predictability makes it easy for agents to understand and navigate the toolset without ambiguity.

Tool Count3/5

With 23 tools, the count feels heavy for a social media posting and analytics server, potentially overwhelming for agents. While the domain is broad, a more streamlined set of 15-20 tools might be more manageable without sacrificing functionality.

Completeness5/5

The toolset provides comprehensive coverage for social media management, including full CRUD operations for posts and threads, detailed analytics, user settings, subscription info, and automation features like follow-ups. No obvious gaps are present, supporting end-to-end workflows.

Resources