find_process
Locate running processes by name using case-insensitive partial matching. Returns a table of matching processes with PID, CPU%, memory, and status.
Instructions
Search for running processes by name using case-insensitive partial matching.
Use this to locate specific processes — for example, find_process("chrome") returns all Chrome-related processes. Use get_top_processes instead when you want to see the highest resource consumers regardless of name. After finding a process, you can use its PID with kill_process to terminate it.
This is a read-only operation with no side effects.
Returns a Markdown table with columns: PID, Name, CPU%, Mem%, RSS, User, Status. Returns a plain text message if no processes match. Processes that exit during enumeration or require elevated access are skipped.
Args: name: Process name or substring to search for. Matching is case-insensitive and partial — "fire" matches "firefox", "Firewall", etc.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes |