manage_routes
Enable or disable specific CIDR routes for a device using the Tailscale MCP Server, ensuring precise control over network configurations and routing.
Instructions
Enable or disable routes for a device
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| action | Yes | Whether to enable or disable the routes | |
| deviceId | Yes | The ID of the device | |
| routes | Yes | Array of CIDR routes to manage | 
Input Schema (JSON Schema)
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "additionalProperties": false,
  "properties": {
    "action": {
      "description": "Whether to enable or disable the routes",
      "enum": [
        "enable",
        "disable"
      ],
      "type": "string"
    },
    "deviceId": {
      "description": "The ID of the device",
      "type": "string"
    },
    "routes": {
      "description": "Array of CIDR routes to manage",
      "items": {
        "type": "string"
      },
      "type": "array"
    }
  },
  "required": [
    "deviceId",
    "routes",
    "action"
  ],
  "type": "object"
}