unblockUser
Restore access for a blocked user on Twitter by unblocking their account using their user ID or username. Facilitates reconnection via the Twitter MCP Server.
Instructions
Unblock a previously blocked user account
Input Schema
Name | Required | Description | Default |
---|---|---|---|
userId | No | The ID of the user to unblock | |
username | No | The username of the user to unblock (alternative to userId) |
Input Schema (JSON Schema)
{
"properties": {
"userId": {
"description": "The ID of the user to unblock",
"type": "string"
},
"username": {
"description": "The username of the user to unblock (alternative to userId)",
"type": "string"
}
},
"required": [],
"type": "object"
}