getBlockedUsers
Retrieve a paginated list of users you have blocked on Twitter, including customizable user fields and results limits using the Twitter MCP Server.
Instructions
Retrieve a paginated list of users you have blocked
Input Schema
Name | Required | Description | Default |
---|---|---|---|
maxResults | No | Maximum number of blocked users to return (default: 100, max: 1000) | |
paginationToken | No | Pagination token for retrieving next page of results | |
userFields | No | User fields to include in the response |
Input Schema (JSON Schema)
{
"properties": {
"maxResults": {
"description": "Maximum number of blocked users to return (default: 100, max: 1000)",
"maximum": 1000,
"minimum": 1,
"type": "number"
},
"paginationToken": {
"description": "Pagination token for retrieving next page of results",
"type": "string"
},
"userFields": {
"description": "User fields to include in the response",
"items": {
"enum": [
"id",
"name",
"username",
"description",
"profile_image_url",
"public_metrics",
"verified",
"location",
"url"
],
"type": "string"
},
"type": "array"
}
},
"required": [],
"type": "object"
}