Claude Code MCP

searchGlob

Search for files matching a pattern

Input Schema

NameRequiredDescriptionDefault
pathNoThe directory to search in. Defaults to the current working directory.
patternYesThe glob pattern to match files against

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "path": { "description": "The directory to search in. Defaults to the current working directory.", "type": "string" }, "pattern": { "description": "The glob pattern to match files against", "type": "string" } }, "required": [ "pattern" ], "type": "object" }