Skip to main content
Glama
x746b

Windows Forensics MCP Server

by x746b

windows_search_parse

Parse Windows Search EDB files to extract file, internet history, and activity history reports with time and text filters, returning evidence hashes for forensic analysis.

Instructions

Parse an explicit Windows Search EDB using SIDR 0.9.2. Returns file, internet history, and activity history reports with extraction completeness and evidence hashes. Uses a partial PropertyStore fallback if SIDR is absent. Text filters are case-insensitive substrings combined with AND. Time bounds are inclusive UTC: file DateModified, internet Link_DateVisited, activity StartTime. Incomplete zero results are not conclusive.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
queryNoSearch all raw report fields
fieldsNoRaw field names plus report_type
offsetNo
timeoutNo
work_idNo
edb_pathYesExplicit Windows Search EDB file
time_endNoISO timestamp; naive means UTC
sidr_pathNoOptional SIDR executable path
time_startNoISO timestamp; naive means UTC
path_filterNo
report_typeNoall
content_filterNoSearch System_Search_AutoSummary
filename_filterNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.4.5

TDQS

A4.6/5.0
Behavior5/5

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

With no annotations, the description carries the full behavioral burden and does so well: it discloses the SIDR version, the PropertyStore fallback when SIDR is absent, case-insensitive AND-combined text filtering, inclusive UTC time bounds mapped to specific fields, and the caveat that incomplete zero results are not conclusive.

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?

Four sentences deliver a high density of useful information with no filler. The most important scoping and output facts come first, followed by filter, time, and reliability caveats.

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 14-parameter tool with no output schema and no annotations, the description is strong: it covers inputs, outputs, fallback behavior, filter semantics, time semantics, and result reliability. It does not describe the exact output shape or error conditions, but an agent has enough 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.

Parameters4/5

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

Schema coverage is only 50%, and the description compensates for several otherwise unexplained parameters: it defines text filter behavior (case-insensitive substring AND), time semantics (inclusive UTC), and the fields each time bound applies to. Common control parameters like limit, offset, and timeout are left to their schema defaults, but the core forensic parameters are clarified.

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 opens with a specific verb and resource: 'Parse an explicit Windows Search EDB using SIDR 0.9.2.' It also names the report types returned (file, internet history, activity history), which distinguishes it from sibling parsers aimed at other artifacts such as Prefetch, AMCache, or SRUM.

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

Usage Guidelines4/5

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

It clearly scopes usage to explicit Windows Search EDB files and explains the SIDR dependency with a fallback. It does not explicitly name alternative tools or state when not to use it, but the artifact-specific wording gives enough contextual guidance.

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