device_action
Manage device permissions and configurations by performing actions like authorizing, deauthorizing, deleting, or expiring keys on a specified device within the Tailscale MCP Server.
Instructions
Perform actions on a specific device
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| action | Yes | The action to perform on the device | |
| deviceId | Yes | The ID of the device to act on | 
Input Schema (JSON Schema)
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "additionalProperties": false,
  "properties": {
    "action": {
      "description": "The action to perform on the device",
      "enum": [
        "authorize",
        "deauthorize",
        "delete",
        "expire-key"
      ],
      "type": "string"
    },
    "deviceId": {
      "description": "The ID of the device to act on",
      "type": "string"
    }
  },
  "required": [
    "deviceId",
    "action"
  ],
  "type": "object"
}