X (Twitter) MCP server

get_user_following

Retrieve a list of users followed by a specific account on X (Twitter) using a user ID, with options to set count and cursor for pagination.

Instructions

Retrieves users the given user is following

Input Schema

NameRequiredDescriptionDefault
countNo
cursorNo
user_idYes

Input Schema (JSON Schema)

{ "properties": { "count": { "anyOf": [ { "type": "integer" }, { "type": "null" } ], "default": 100, "title": "Count" }, "cursor": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Cursor" }, "user_id": { "title": "User Id", "type": "string" } }, "required": [ "user_id" ], "title": "get_user_followingArguments", "type": "object" }
ID: 7w9byzj3wm