unmute_user
Restore access to a muted user on Bluesky Social MCP by unmuting their account. This tool accepts the user's handle or DID to process the request and provides the operation status.
Instructions
Unmute a previously muted user.
Args:
ctx: MCP context
actor: Handle or DID of the user to unmute
Returns:
Status of the unmute operation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
actor | Yes |
Input Schema (JSON Schema)
{
"properties": {
"actor": {
"title": "Actor",
"type": "string"
}
},
"required": [
"actor"
],
"title": "unmute_userArguments",
"type": "object"
}