Skip to main content
Glama
vialan-art

social-search-mcp

by vialan-art

x_search

Read-onlyIdempotent

Search X/Twitter posts in Latest or Top order, return one page of up to 20 results with reply and quote context, and pass a cursor to fetch the next page.

Instructions

Search X through TwitterAPI.io. Returns one whole upstream page (normally up to 20 posts), preserving Latest or Top order and reply/quote context. Billed per returned post. Pass next_cursor to page; no automatic retries or popularity filters.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sortNoLatest
queryYes
cursorNo
detailNoCompact retains full post text and essential context; full also retains author profiles and raw media metadata.compact

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.9/5.0
Behavior4/5

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

Annotations already cover the safety profile (readOnly, idempotent, non-destructive, openWorld), and the description adds meaningful traits beyond them: per-post billing, a ~20-post page size, preserved Latest/Top ordering, retained reply/quote context, and the absence of automatic retries or popularity filters. Error-handling and rate-limit behavior beyond 'no retries' is left unstated, so not a full 5.

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?

Four compact sentences, front-loaded with the purpose and return shape, each carrying distinct information (source, page size, ordering, billing, paging, retry policy). Slightly dense but no filler.

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?

With no output schema, the description correctly carries the return-value burden by describing page size, ordering preservation, and included reply/quote context. What remains thin is guidance on query construction and how cursor paging terminates, which a low-coverage schema does not cover.

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 description coverage is only 25% (only 'detail' is documented), so the description must compensate and partly does: it explains ordering via the Latest/Top mention and paging via the cursor. However, it refers to 'next_cursor' while the actual parameter is named 'cursor', and it never characterizes the required 'query' parameter's syntax or the compact/full tradeoff.

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?

States a specific verb and resource ('Search X through TwitterAPI.io') and describes the return shape ('one whole upstream page... up to 20 posts'). An agent can immediately distinguish this from reddit_search and x_post without opening any schema.

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

Usage Guidelines3/5

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

Gives operational context ('Pass next_cursor to page') but never states when to choose this over reddit_search or x_post, nor any exclusions. Usage is implied by the resource name rather than explicitly routed.

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

Deploy Server

Other Tools