Events

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

Event streaming and real-time notifications.

Event {
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of event"
    },
    "user_id": {
      "type": "string",
      "format": "UUID",
      "description": "The user who made the action that emitted the event"
    },
    "project_id": {
      "type": "string",
      "format": "UUID",
      "description": "Project ID"
    },
    "data": {
      "type": "string",
      "format": "json",
      "description": "Free JSON field to add metadata"
    }
  }
}