winops_process_list
List running Windows processes with CPU and memory usage, optionally filtering by name and including system processes.
Instructions
List running Windows processes with CPU and memory usage.
Return Format
{
"success": true,
"processes": [{"pid": int, "name": str, "user": str, "cpu": float, "mem": float}],
"count": int,
"has_more": bool
}Examples
list(name_filter="python", limit=20)
list(include_system=True, limit=100)Notes:
Result is bounded by
limit. If count == limit, has_more may be true.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max processes to return (1-500). | |
| name_filter | No | Substring filter on process name. | |
| include_system | No | Include SYSTEM/LOCAL SERVICE processes. |