search_history_content
Search for specific text within history entries stored in the Local History MCP Server. Supports case-sensitive or case-insensitive queries for precise file or content retrieval.
Instructions
Search for specific content across all history entries
Input Schema
Name | Required | Description | Default |
---|---|---|---|
caseSensitive | No | Whether the search should be case sensitive | |
searchTerm | Yes | The text to search for in history entries |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"caseSensitive": {
"default": false,
"description": "Whether the search should be case sensitive",
"type": "boolean"
},
"searchTerm": {
"description": "The text to search for in history entries",
"type": "string"
}
},
"required": [
"searchTerm"
],
"type": "object"
}