You're viewing a demo portfolio

Join the waitlist
PRSM

ic_files_update

Active

Tool of Immersive Commons

declared in 1.31.0

Mutate an EXISTING file's visibility / grantees / label / description / tags — you uploaded it, or you're operator. Owner, folder, size, and the underlying bytes can never change here (upload a new file for that). Only the fields you pass are touched; omit a field to leave it as-is. Args: { file_id, visibility?: 'ic-members'|'grantees'|'private', grantees?: string[], label?: string, description?: string, tags?: string[] }. Returns: { ok, file }. Required scope: files:write (ic-member+; only the uploader or an operator).

Parameters schema

{
  "type": "object",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "required": [
    "file_id"
  ],
  "properties": {
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "maxItems": 12,
      "description": "Free-text tags. Omit to leave unchanged."
    },
    "label": {
      "type": "string",
      "maxLength": 200,
      "description": "Human title. Omit to leave unchanged."
    },
    "file_id": {
      "type": "string",
      "maxLength": 64,
      "minLength": 1,
      "description": "The file id (f_...) to update."
    },
    "grantees": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "maxItems": 100,
      "description": "Clerk user ids allowed when visibility='grantees'. Omit to leave unchanged."
    },
    "visibility": {
      "enum": [
        "ic-members",
        "grantees",
        "private"
      ],
      "type": "string",
      "description": "Who can download. Omit to leave unchanged."
    },
    "description": {
      "type": "string",
      "maxLength": 2000,
      "description": "What the file is. Omit to leave unchanged."
    }
  }
}

What this tool wraps· 0 endpoints

min confidence0.700.50

No endpoints wrapped at confidence ≥ 0.50.

Parent server

Immersive Commons

https://github.com/immersive-commons/ic-skills

1/7 registries
View full server →
ic_files_update — Immersive Commons — PRSM MCP