send_post
Publish posts on Bluesky Social MCP, including text, rich media, and language-specific content. Supports replies, mentions, and embeds for enhanced interaction.
Instructions
Send a post to Bluesky.
Args:
ctx: MCP context
text: Text content of the post
profile_identify: Optional handle or DID. Where to send post. If not provided, sends to current profile
reply_to: Optional reply reference with 'root' and 'parent' containing 'uri' and 'cid'
embed: Optional embed object (images, external links, records, or video)
langs: Optional list of language codes used in the post (defaults to ['en'])
facets: Optional list of rich text facets (mentions, links, etc.)
Returns:
Status of the post creation with uri and cid of the created post
Input Schema
Name | Required | Description | Default |
---|---|---|---|
embed | No | ||
facets | No | ||
langs | No | ||
profile_identify | No | ||
reply_to | No | ||
text | Yes |
Input Schema (JSON Schema)
{
"properties": {
"embed": {
"anyOf": [
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Embed"
},
"facets": {
"anyOf": [
{
"items": {
"additionalProperties": true,
"type": "object"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Facets"
},
"langs": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Langs"
},
"profile_identify": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Profile Identify"
},
"reply_to": {
"anyOf": [
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Reply To"
},
"text": {
"title": "Text",
"type": "string"
}
},
"required": [
"text"
],
"title": "send_postArguments",
"type": "object"
}