unmute_user
Restore visibility of posts from a muted Bluesky user by removing mute restrictions to see their content again.
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
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| actor | Yes |
Implementation Reference
- server.py:736-769 (handler)The unmute_user tool handler. Decorated with @mcp.tool() for registration. Calls bluesky_client.unmute(actor) after getting authenticated client, returns success/error dict.@mcp.tool() def unmute_user( ctx: Context, actor: str, ) -> Dict: """Unmute a previously muted user. Args: ctx: MCP context actor: Handle or DID of the user to unmute Returns: Status of the unmute operation """ try: bluesky_client = get_authenticated_client(ctx) # The unmute method returns a boolean success = bluesky_client.unmute(actor) if success: return { "status": "success", "message": f"Unmuted user {actor}", } else: return { "status": "error", "message": "Failed to unmute user", } except Exception as e: error_msg = f"Failed to unmute user: {str(e)}" return {"status": "error", "message": error_msg}