get_scheduled_tasks
Retrieve and query scheduled tasks or check detailed status of a specific task on a Windows system using a secure command-line MCP server.
Instructions
Retrieve information about scheduled tasks on the system. Can query all tasks or get detailed status of a specific task.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | No | Action to perform | query |
taskName | No | Name of the specific task (optional) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"action": {
"default": "query",
"description": "Action to perform",
"enum": [
"query",
"status"
],
"type": "string"
},
"taskName": {
"description": "Name of the specific task (optional)",
"type": "string"
}
},
"type": "object"
}