Skip to main content
Glama

X: Get user posts

x_get_user_posts
Read-onlyIdempotent

Returns public posts from a user's profile as visible to not logged in users. This feed is not guaranteed to be chronological and is often a ranked public selection. Pages may overlap: a pinned post is repeated on every page, so deduplicate by id when paging. Supports projection_preset, data_fields, and item_fields for payload reduction.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cursorNoPagination cursor
usernameYesX username (with or without @ symbol)
data_fieldsNoOptional. Add top-level data keys on top of the selected projection_preset.
item_fieldsNoOptional. Add item keys from data.orderedItems[] on top of the selected projection_preset.
projection_presetNoOptional. Defaults to "minimal". Use one of: full, minimal, identity, engagement, or content.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changed
    • removedInput schema / properties / count
      Removed value: -{
      -  "description": "Maximum number of posts to return from the public profile selection (maximum: 100) Default: 20",
      -  "maximum": 9007199254740991,
      -  "minimum": -9007199254740991,
      -  "type": "integer"
      -}
    • addedInput schema / properties / cursor
      Added value: +{
      +  "description": "Pagination cursor",
      +  "type": "string"
      +}
  2. Added

TDQS

A4.7/5.0
Behavior5/5

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

Even with readOnlyHint=true and idempotentHint=true, the description adds valuable behavioral detail: the feed is not chronological, it is often a ranked selection, pages can overlap due to pinned posts, and callers must deduplicate by id. This goes well beyond what annotations or the schema reveal.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three sentences with no filler: the main purpose is front-loaded, followed by critical behavioral caveats and a compact parameter note. Every sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a read-only public-feed tool, the description covers what the resource is, access semantics, ordering expectations, pagination pitfalls, and the optional payload-reduction parameters. The input schema already documents the parameters, and annotations cover safety, so nothing essential is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3, but the description adds meaning by grouping projection_preset, data_fields, and item_fields as payload-reduction controlscars and by tying pagination behavior to deduplication by id. This helps the agent understand why those optional parameters exist and when to use them.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb and resource: 'Returns public posts from a user's profile as visible to not logged in users.' This clearly distinguishes the tool from siblings like x_get_post, x_get_user, and x_get_user_highlights by scope, access level, and resource type.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context: use this when you need the public posts on a user's profile as an anonymous visitor would see them. It does not explicitly name alternatives or state when not to use it, which keeps it from a 5, but the context is unambiguous.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources