Skip to main content
Glama
sandraschi

sysinternals-mcp

by sandraschi

rammap_physical

Show physical memory usage breakdown by category, including active, standby, modified, and free pages, plus total, available, cached, and page-file sizes to diagnose memory pressure.

Instructions

Show physical memory usage breakdown by category.

RAMMap-style view: active, standby, modified, modified-no-write, transition, zeroed, free, and bad page counts. Also reports total, available, cached, and page-file sizes.

Uses a single PowerShell script that queries WMI and performance counters. No binary download required.

Return Format

{"success": bool, "categories": dict, "totals": dict, "error": str | None}

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
detailedNoInclude per-category breakdown with standby list details

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.7/5.0
Behavior4/5

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

With no annotations, the description carries the full burden and does add real behavioral context: it discloses the data sources (WMI plus performance counters), that it runs as a single PowerShell script, and that no binary download is required. It does not explicitly state read-only status, but the operation is self-evidently a read-only view, so the gap is minor.

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

Conciseness4/5

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

Purpose is front-loaded in the first line, follow-up details are partitioned under a clear 'Return Format' header, and each sentence conveys distinct information (categories, data source, no-download trait). Slightly long due to the full category enumeration, but nothing is wasted.

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?

The tool is a simple read-only view and the description covers purpose, data-source mechanics, and even the return shape, so an agent has what it needs to call it. With an output schema present the return-format text is somewhat redundant, but no critical calling information is missing.

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 the sole 'detailed' parameter is fully documented in the schema, so the baseline of 3 applies. The description never references or expands on the 'detailed' flag, offering no syntax or effect beyond what the schema already provides.

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?

States a specific verb and resource: 'Show physical memory usage breakdown by category,' and enumerates the exact categories (active, standby, modified, zeroed, free, bad, etc.) plus totals. It clearly conveys scope, but it never explicitly distinguishes itself from the sibling rammap_summary/rammap_processes/rammap_file_backed tools.

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

Usage Guidelines3/5

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

Usage is only implied by the purpose ('RAMMap-style view' of physical memory); there is no explicit when-to-use statement and no routing to the closely related rammap_* siblings. An agent can infer the intent, but nothing tells it when to prefer this over rammap_summary or rammap_treemap.

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