manage_file_sharing
Manage file sharing settings on Tailscale devices by enabling, disabling, or retrieving status through automated operations with the MCP server.
Instructions
Manage Tailscale file sharing settings
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| deviceId | No | Device ID (for device-specific operations) | |
| operation | Yes | File sharing operation to perform | 
Input Schema (JSON Schema)
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "additionalProperties": false,
  "properties": {
    "deviceId": {
      "description": "Device ID (for device-specific operations)",
      "type": "string"
    },
    "operation": {
      "description": "File sharing operation to perform",
      "enum": [
        "get_status",
        "enable",
        "disable"
      ],
      "type": "string"
    }
  },
  "required": [
    "operation"
  ],
  "type": "object"
}