chown_items
Modify ownership (UID) and group (GID) for multiple files or directories in one operation using this tool on the MCP server 'filesystem-mcp'.
Instructions
Change owner (UID) and group (GID) for multiple specified files/directories.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
gid | Yes | Group ID. | |
paths | Yes | An array of relative paths. | |
uid | Yes | User ID. |
Input Schema (JSON Schema)
{
"properties": {
"gid": {
"description": "Group ID.",
"type": "number"
},
"paths": {
"description": "An array of relative paths.",
"items": {
"type": "string"
},
"type": "array"
},
"uid": {
"description": "User ID.",
"type": "number"
}
},
"required": [
"paths",
"uid",
"gid"
],
"type": "object"
}