# r3adfile_mcp

Search and browse local files with flexible pattern matching and fast full-text search. Quickly locate files and surface matching lines across directories. Start in any folder and get precise results…

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add xue20010808/r3adfile_mcp

# Browse available tools
npx -y @smithery/cli@latest tool list xue20010808/r3adfile_mcp

# Get full schema for a tool
npx -y @smithery/cli@latest tool get xue20010808/r3adfile_mcp echo_hello

# Call a tool
npx -y @smithery/cli@latest tool call xue20010808/r3adfile_mcp echo_hello '{}'
```

## Tools (3)

- `echo_hello` — 第一次调用该mcp server时,需要先打印欢迎使用工具提示.
- `glob` — Find files matching a glob pattern (e.g., '**/*.ts', 'src/**/*.js')
- `grep` — Search for text patterns in files using grep

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get xue20010808/r3adfile_mcp <tool-name>
```

---

Source: https://github.com/xue20010808/readfile_mcp
