Skip to main content
Glama

process_list

List running system processes with PID, CPU/memory usage, user, and command line. Filter by process name or command to locate specific tasks.

Instructions

List running system processes with PID, CPU/memory usage, user, and command line.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
filterNoOptional filter string for process name or command.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the burden of indicating side effects. The verb 'List' reasonably implies a read-only snapshot, and the description specifies the output fields. However, it does not state whether any permissions are needed, whether filtering is applied server-side, or whether the output is sorted or paginated.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single, front-loaded sentence that names the action, the target, and the key output fields without any filler. Every word contributes.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple list tool with one optional parameter and no output schema, the description covers the main return contents and the schema covers the filter. It lacks usage guidance and explicit side-effect disclosure, but the low complexity makes this a minor gap.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%: the only parameter, 'filter', is described as an optional string for process name or command. The description adds no additional meaning beyond the schema, but the baseline of 3 applies because the schema already documents the parameter well.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'List' and the resource 'running system processes', and enumerates the returned fields (PID, CPU/memory usage, user, command line). It distinguishes itself from siblings like process_list_bg_jobs by focusing on running processes, though it does not explicitly name an alternative.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives no guidance on when to use this tool versus siblings such as process_get_loadavg, process_get_priority, or process_list_bg_jobs. There is no mention of use cases, prerequisites, or exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.