# readfile_mcp

Explore your local files with fast glob matching and text search. Find files across directories and pinpoint patterns in code, logs, or docs. Focus searches on any folder to keep results relevant.

## Quick Start

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

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

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

# Call a tool
npx -y @smithery/cli@latest tool call xue20010808/readfile_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/readfile_mcp <tool-name>
```

---

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