delete_post
Remove a specific post from Bluesky Social MCP by providing its URI. This tool ensures users can delete their content when needed, maintaining control over their social media presence.
Instructions
Delete a post created by the authenticated user.
Args:
ctx: MCP context
uri: URI of the post to delete
Returns:
Status of the delete operation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
uri | Yes |
Input Schema (JSON Schema)
{
"properties": {
"uri": {
"title": "Uri",
"type": "string"
}
},
"required": [
"uri"
],
"title": "delete_postArguments",
"type": "object"
}