send_video
Share a post with video content on Bluesky Social MCP. Include text, video data, and optional details like alt text, language codes, and reply information.
Instructions
Send a post with a video.
Args:
ctx: MCP context
text: Text content of the post
video_data: Base64-encoded video data
video_alt: Optional alternative text description for the video
profile_identify: Optional handle or DID for the post author
reply_to: Optional reply information dict with keys uri and cid
langs: Optional list of language codes
facets: Optional list of facets (mentions, links, etc.)
Returns:
Status of the post creation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
facets | No | ||
langs | No | ||
profile_identify | No | ||
reply_to | No | ||
text | Yes | ||
video_alt | No | ||
video_data | Yes |
Input Schema (JSON Schema)
{
"properties": {
"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"
},
"video_alt": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Video Alt"
},
"video_data": {
"title": "Video Data",
"type": "string"
}
},
"required": [
"text",
"video_data"
],
"title": "send_videoArguments",
"type": "object"
}