search_registry
Search the Windows registry by a specified keyword to retrieve entries, with options to limit results. Part of the Windows Diagnostics MCP Server for system analysis.
Instructions
Search the Windows registry by keyword
Input Schema
Name | Required | Description | Default |
---|---|---|---|
maxResults | No | Maximum number of results to return (default: 50) | |
searchTerm | Yes | Keyword to search for in the registry |
Input Schema (JSON Schema)
{
"properties": {
"maxResults": {
"default": 50,
"description": "Maximum number of results to return (default: 50)",
"type": "number"
},
"searchTerm": {
"description": "Keyword to search for in the registry",
"type": "string"
}
},
"required": [
"searchTerm"
],
"type": "object"
}