Skip to main content
Glama
rafaljanicki

X (Twitter) MCP server

by rafaljanicki

get_user_by_id

Retrieve user details from the X (Twitter) MCP server using a unique user ID, enabling quick access to specific user information.

Instructions

Fetches a user by ID

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
user_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The main handler function for the 'get_user_by_id' tool. It initializes the Twitter client and calls client.get_user to fetch user details by ID, returning the user data.
    async def get_user_by_id(user_id: str) -> Dict:
        """Fetches user by ID.
    
        Args:
            user_id (str): The ID of the user to look up.
        """
        client, _ = initialize_twitter_clients()
        user = client.get_user(id=user_id, user_fields=["id", "name", "username", "profile_image_url", "description"])
        return user.data
  • The FastMCP decorator that registers the 'get_user_by_id' tool with its name and description.
    @server.tool(name="get_user_by_id", description="Fetches a user by ID")
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It states it 'fetches' a user, implying a read-only operation, but doesn't specify if it requires authentication, rate limits, error handling, or what happens if the user ID is invalid. This leaves significant gaps in understanding the tool's behavior.

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?

The description is extremely concise with a single sentence that directly states the tool's action. It is front-loaded and wastes no words, making it easy to parse quickly.

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

Completeness3/5

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

Given the tool's low complexity (one parameter) and the presence of an output schema, the description is minimally adequate. However, with no annotations and a simple schema, it should provide more context about usage and behavior to be fully helpful, especially with sibling tools that fetch similar resources.

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?

The description adds no meaning beyond the input schema, which has 0% description coverage. It doesn't explain what 'user_id' represents, its format, or constraints. However, with only one parameter, the baseline is 4, but the lack of any semantic context reduces it to 3, as the schema alone provides minimal information.

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 ('Fetches') and resource ('a user'), making the purpose immediately understandable. However, it doesn't differentiate from sibling 'get_user_by_screen_name', which fetches the same resource using a different identifier, leaving room for confusion about when to use each.

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

Usage Guidelines2/5

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 alternatives like 'get_user_by_screen_name' or 'get_user_profile'. It lacks context about prerequisites, such as needing a user ID, and doesn't mention any exclusions or specific use cases.

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

Install Server

Other Tools

Related Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/rafaljanicki/x-twitter-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server