Delete a metadata descriptor from 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
DELETE /data/metadata-descriptors/all-projects/{field_name}

Remove every metadata descriptor sharing the given field name across the open projects the user can access. Replaces one delete request per project.

Path parameters

  • field_name string Required

Query parameters

  • entity_type string Required

Responses

  • 200

    Removed descriptor ids

  • 400

    Invalid parameters

DELETE /data/metadata-descriptors/all-projects/{field_name}
curl \
 --request DELETE 'http://api.example.com/data/metadata-descriptors/all-projects/{field_name}?entity_type=string' \
 --header "Authorization: $API_KEY"