Subscribe to several tasks

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/user/tasks/subscribe

Create subscription entries for the current user and every task in the id list. Useful to subscribe to a selection in one request. Returns the created subscriptions.

application/json

Body Required

  • task_ids array[string(uuid)] Required

Responses

  • 201 application/json

    Subscriptions created successfully

POST /actions/user/tasks/subscribe
curl \
 --request POST 'http://api.example.com/actions/user/tasks/subscribe' \
 --header "Authorization: $API_KEY" \
 --header "Content-Type: application/json" \
 --data '{"task_ids":["string"]}'
Request examples
{
  "task_ids": [
    "string"
  ]
}
Response examples (201)
[
  {}
]