Skip to main content
Glama

SocialDataX X / Twitter MCP

x_get_user_posts_by_profile_url

Read-only

根据 X 用户主页链接获取公开用户帖子列表;可直接使用结果里的非空 author.profile_url,不要传帖子链接,支持 page_token 翻页。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
page_tokenNoX 用户帖子列表分页令牌。首次请求留空。继续翻页时必须将上一页返回的完整 next_page_token 原样作为 page_token 传回;page_token 是不透明分页令牌;不得修改、截断、缩写、脱敏、掩码、省略、规范化、重组或自行生成,不得用省略号替换中间内容。只能用于同一用户帖子列表;切换 user_id、username 或 profile_url 时请清空 page_token 后从第一页重新获取。
profile_urlYesX 用户主页链接;从搜索、详情、评论或评论回复结果的非空 author.profile_url,或用户帖子列表结果的非空 author.profile_url,或用户信息结果的非空 profile_url 原样复制;也可传用户提供的 x.com 或 twitter.com 用户主页链接;不要传帖子链接、评论链接、帖子正文里的链接、搜索关键词或接口地址。

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
itemsYes当前页 X 用户帖子列表;当前页可能为空,是否可继续翻页以 next_page_token 是否为空为准。
pointsYes本次成功调用的积分消耗与调用完成时的账户积分余额。
next_page_tokenYes下一页不透明分页令牌;为空表示没有更多用户帖子。继续翻页时必须将返回的完整 next_page_token 原样作为 page_token 传回;只用于当前用户帖子列表续页;不得修改、截断、缩写、脱敏、掩码、省略、规范化、重组或自行生成,不得用省略号替换中间内容。

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A3.6/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, so the safe-read behavior is covered. The description adds that posts are public and that page_token pagination is supported, but does not disclose rate limits or response shape; the output schema covers the latter. No contradiction with annotations.

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

Conciseness4/5

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

The description is a single, dense sentence containing three useful pieces: the core purpose, input sourcing guidance, and pagination support. It has no filler, though the multiple clauses make it slightly less scannable than a two-sentence structure.

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

Completeness4/5

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

Combined with the highly detailed schema and an output schema, the description covers the essential operational aspects: what the tool fetches, where to source the profile_url, what not to pass, and pagination. It does not explicitly mention alternative tools, but that is not critical for calling this tool correctly.

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

Parameters3/5

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

Schema coverage is 100%, and the schema descriptions for both profile_url and page_token are extremely detailed, including exact sources, exclusions, and opaque-token rules. The main description only adds a usage hint about reusing author.profile_url, which is helpful but not necessary given the schema's depth.

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

Purpose4/5

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

The description clearly states the verb '获取' (get) and the resource '公开用户帖子列表' (public user posts list) keyed by profile_url. It distinguishes itself from sibling tools by name and by emphasizing the profile_url input, but does not explicitly name the user_id/username alternatives.

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 gives concrete guidance: use a non-empty author.profile_url from other results or a user-provided x.com/twitter link, and explicitly warns not to pass post links. It mentions pagination support but does not explicitly tell when to choose sibling tools based on available identifiers.

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