Skip to main content
Glama
sandraschi

sysinternals-mcp

by sandraschi

psfile

List files opened by remote systems via network shares to identify active remote file access.

Instructions

List files opened by remote systems via network shares.

Wraps Sysinternals PsFile.

Return Format

{"success": bool, "files": list[dict], "count": int, "error": str | None}

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
accept_eulaNoAccept EULA (stored once)
path_filterNoFilter by path (optional)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.2/5.0
Behavior3/5

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

With no annotations present, the description carries the full behavioral burden. It discloses the Sysinternals wrapper (useful context) and the return shape, and 'list' implies a read-only operation, but it says nothing about privilege requirements, remote-access assumptions, or the EULA acceptance the tool depends on.

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?

Very tightly written and front-loaded: purpose first, wrapper note, then return format. The return-format block is somewhat redundant given an output schema exists, which slightly dilutes conciseness.

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 read-only listing tool with a full output schema and 100% parameter coverage, the description supplies what the structured fields cannot: identity of the underlying utility and the response shape. Only operational prerequisites (privileges, EULA) are 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%, so both accept_eula and path_filter are already documented in the schema. The description adds no filtering syntax, matching semantics, or meaning beyond what the schema provides, so the baseline of 3 applies.

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 ('List files opened by remote systems via network shares') and identifies the underlying Sysinternals utility, making the scope clear. It doesn't explicitly contrast itself with siblings like handle64 or psfile_close, so an agent must infer the boundary, but the resource framing is precise.

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?

No when-to-use guidance, no prerequisites, and no mention of the alternative sibling psfile_close or when this beats handle64. The agent is told what it is but not when to choose it.

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