Agents

Agent Kit

Install and use the official Taisly Agent Kit package, CLI, skill file, and local MCP server.

Taisly Agent Kit is the JSON-first package for AI agents that publish short-form videos through Taisly.

It includes:

  • A CLI for local and scripted workflows.
  • A local stdio MCP server.
  • Agent setup and check-in commands.
  • Structured commands for platforms, post validation, publishing, status, and reposts.

Install

Install Agent Kit
npm install -g @taisly/agent
taisly auth:status
  1. Set TAISLY_API_KEY.
  2. Run taisly auth:status.
  3. Run taisly platforms:list or taisly integrations:list.
  4. Run taisly platforms:schema --platform TikTok.
  5. Run taisly posts:validate.
  6. Confirm destination accounts and caption with the user.
  7. Run taisly posts:create.
  8. Store the returned historyId.
  9. Run taisly posts:status --id <historyId>.

Common commands

taisly auth:status
taisly platforms:list
taisly integrations:list
taisly platforms:schema --platform TikTok
taisly posts:validate --video ./launch.mp4 --platforms <platform_id> --description "Launch day"
taisly posts:create --video ./launch.mp4 --platforms <platform_id> --description "Launch day"
taisly posts:create --json ./campaign.json
taisly posts:list --page 1
taisly posts:status --id <historyId>
taisly reposts:list
taisly reposts:create --from <platform_id> --to <platform_id_1,platform_id_2>

Local MCP

Use local MCP when an agent can launch local commands and needs access to files on your machine.

npx -y @taisly/agent mcp

Example Claude Code setup:

claude mcp add --transport stdio taisly -- npx -y @taisly/agent mcp

Safety rules

Agent safety

Never invent platform IDs, never print API keys, and do not create a live post until the user has confirmed the video, caption, destination, and schedule.

On this page