glob
Find files matching pattern in virtual filesystem using wildcards, recursive matching, and brace expansion. Returns matching file paths.
Instructions
Find files matching a glob pattern. Supports wildcards (.ts), recursive matching (**/.md), and brace expansion ({py,json}). Returns an array of matching file paths. Only matches files, not directories.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pattern | Yes | Glob pattern (e.g. **/*.ts, /src/**/*.{js,ts}) | |
| store | No | Named persistent store for cross-session access. Sessions are ephemeral (one per MCP connection); named stores persist indefinitely. Omit to use the session's own namespace. |