list_devices
Retrieve a detailed list of all devices connected to the Tailscale network, optionally including route information, for streamlined network management and monitoring.
Instructions
List all devices in the Tailscale network
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| includeRoutes | Yes | Include route information for each device |
Input Schema (JSON Schema)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"includeRoutes": {
"default": false,
"description": "Include route information for each device",
"type": "boolean"
}
},
"required": [
"includeRoutes"
],
"type": "object"
}