Set tasks priority

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
PUT /actions/tasks/set-priority

Set the priority of every task given in the id list. Tasks the current user is not allowed to update are skipped.

application/json

Body Required

  • task_ids array[string(uuid)] Required
  • priority integer Required

Responses

  • 200 application/json

    Updated tasks

PUT /actions/tasks/set-priority
curl \
 --request PUT 'http://api.example.com/actions/tasks/set-priority' \
 --header "Authorization: $API_KEY" \
 --header "Content-Type: application/json" \
 --data '{"task_ids":["a24a6ea4-ce75-4665-a070-57453082c25","b24a6ea4-ce75-4665-a070-57453082c25"],"priority":2}'
Request examples
{
  "task_ids": [
    "a24a6ea4-ce75-4665-a070-57453082c25",
    "b24a6ea4-ce75-4665-a070-57453082c25"
  ],
  "priority": 2
}
Response examples (200)
[
  {}
]