Create a metadata descriptor 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

Create the same metadata descriptor in every open project the user can access that does not already own one with the same field name. Replaces one create request per project.

application/json

Body Required

  • entity_type string

    Default value is Project.

  • name string Required
  • data_type string Required

Responses

  • 201

    Created descriptors

  • 400

    Invalid parameters

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