Add entities to playlist

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://api-docs.kitsu.cloud/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "Kitsu API MCP server": {
    "url": "https://api-docs.kitsu.cloud/mcp"
  }
}

Close
POST /actions/playlists/{playlist_id}/add-entities

Atomically add several entities to the given playlist in a single database write. Entities already in the playlist are skipped. Each added entity gets its latest uploaded preview file, restricted to the playlist task type when one is set.

Path parameters

  • playlist_id string(uuid) Required

    Playlist unique identifier

application/json

Body Required

  • entity_ids array[string(uuid)] Required

    Entity unique identifiers to add to playlist

Responses

  • 200 application/json

    Updated playlist

POST /actions/playlists/{playlist_id}/add-entities
curl \
 --request POST 'http://api.example.com/actions/playlists/{playlist_id}/add-entities' \
 --header "Authorization: $API_KEY" \
 --header "Content-Type: application/json" \
 --data '{"entity_ids":["string"]}'
Request examples
{
  "entity_ids": [
    "string"
  ]
}
Response examples (200)
{}