Set team member role

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
PUT /data/projects/{project_id}/team/{person_id}

Set the role of a person on this production only. A null role restores the person's global role.

Path parameters

  • project_id string(uuid) Required
  • person_id string(uuid) Required
application/json

Body Required

  • role string | null

    Values are user, supervisor, manager, client, vendor, or null.

Responses

  • 200

    Role updated

  • 400

    Person is not a member of the project team

PUT /data/projects/{project_id}/team/{person_id}
curl \
 --request PUT 'http://api.example.com/data/projects/{project_id}/team/{person_id}' \
 --header "Authorization: $API_KEY" \
 --header "Content-Type: application/json" \
 --data '{"role":"user"}'
Request examples
{
  "role": "user"
}