Reorder project task type links

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 /data/projects/{project_id}/task-type-links/batch

Set the priority of the project's task type links from the given ordered id list in a single request, replacing one link request per task type.

Path parameters

  • project_id string(uuid) Required
application/json

Body Required

  • task_type_ids array[string(uuid)] Required

Responses

  • 200

    Updated task type links

POST /data/projects/{project_id}/task-type-links/batch
curl \
 --request POST 'http://api.example.com/data/projects/{project_id}/task-type-links/batch' \
 --header "Authorization: $API_KEY" \
 --header "Content-Type: application/json" \
 --data '{"task_type_ids":["string"]}'
Request examples
{
  "task_type_ids": [
    "string"
  ]
}