Skip to main content
Glama
DanFashauer

SignalGrid MCP

by DanFashauer

signalgrid_process_snapshot

Read-onlyIdempotent

Get a live snapshot of running processes with PID, parent, user, CPU, memory, and command path. Filter by name to confirm an agent is running or spot suspicious processes.

Instructions

Point-in-time snapshot of running processes (pid, parent, user, %CPU, %MEM, command path).

Use to confirm an agent/daemon is actually running (filter by name) or to spot suspicious processes. Full executable paths are included -- feed a suspicious one to signalgrid_codesign_inspect.

Args: name_contains: substring filter on the command path. sort_by: cpu (default) | memory | pid. limit/offset: pagination (default 25 per page). response_format: markdown table (default) or JSON envelope; items have pid, ppid, user, cpu_pct, mem_pct, command.

Returns: str: rendered table or JSON string; "Error: ..." if ps failed.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum results to return
offsetNoResults to skip for pagination
sort_byNoSort order: 'cpu' (default), 'memory', or 'pid'cpu
name_containsNoCase-insensitive substring filter on the command path, e.g. 'python'
response_formatNo'markdown' for a human-readable table, 'json' for machine-readable datamarkdown

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes
Behavior5/5

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

While annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint, the description adds valuable behavioral context: includes full executable paths, returns either a markdown table or JSON envelope, and outputs 'Error: ...' if ps fails. This goes beyond the annotations and helps set expectations.

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?

The description is front-loaded with a purpose summary, followed by usage guidance and an Args block. Every sentence earns its place; there is no redundancies or fluff. It is long enough to be useful but tightly structured.

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

Completeness5/5

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

For a read-only, non-destructive tool with full schema coverage and an output schema (Has output schema: true), the description covers purpose, usage, behavior, and return format. It even handles error cases and suggests integration with a sibling tool. The description is complete for an agent to select and invoke it correctly.

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 description coverage is 100%, and each parameter already has a clear description (e.g., name_contains is a 'Case-insensitive substring filter'). The tool description repeats the parameter meanings but adds no new semantic depth beyond the schema. Baseline 3 is appropriate given the schema's completeness.

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

Purpose5/5

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

The description begins with 'Point-in-time snapshot of running processes' and lists the exact fields (pid, parent, user, %CPU, %MEM, command path). This specific verb+resource clearly distinguishes it from sibling tools like signalgrid_installed_apps or signalgrid_listening_services.

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

Usage Guidelines5/5

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

Explicit usage guidance is provided: 'Use to confirm an agent/daemon is actually running' and 'spot suspicious processes.' It even suggests pairing with signalgrid_codesign_inspect for suspicious paths, giving a clear when-to-use and complementary alternative.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/DanFashauer/signalgrid-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server