Reorder metadata descriptors on all accessible projects

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/metadata-descriptors/all-projects/reorder

Apply the same column order, given as a list of field names, on every open project the user can access. Replaces one reorder request per project.

application/json

Body Required

  • entity_type string Required
  • field_order array[string] Required

Responses

  • 200

    Updated descriptors

  • 400

    Invalid parameters

POST /data/metadata-descriptors/all-projects/reorder
curl \
 --request POST 'http://api.example.com/data/metadata-descriptors/all-projects/reorder' \
 --header "Authorization: $API_KEY" \
 --header "Content-Type: application/json" \
 --data '{"entity_type":"string","field_order":["string"]}'
Request examples
{
  "entity_type": "string",
  "field_order": [
    "string"
  ]
}