# dev-mcp

Browse directories and read files within a safe, configurable root. Pull accurate context from local projects and docs without leaving your workflow. Limit access to a chosen root to keep your enviro…

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add deep-ai-kr/dev-mcp

# Browse available tools
npx -y @smithery/cli@latest tool list deep-ai-kr/dev-mcp

# Get full schema for a tool
npx -y @smithery/cli@latest tool get deep-ai-kr/dev-mcp read_text_file

# Call a tool
npx -y @smithery/cli@latest tool call deep-ai-kr/dev-mcp read_text_file '{}'
```

## Tools (7)

- `read_text_file` — Read a text file from the filesystem. Returns the file content as text.
- `write_file` — Write content to a file. Creates the file if it doesn't exist, overwrites if it does.
- `list_directory` — List files and directories in a specified path
- `create_directory` — Create a directory. Creates parent directories if they don't exist.
- `get_file_info` — Get detailed information about a file or directory (size, permissions, timestamps, etc.)
- `move_file` — Move or rename a file or directory
- `search_files` — Recursively search for files and directories matching a pattern

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get deep-ai-kr/dev-mcp <tool-name>
```

---

Source: https://github.com/deep-ai-kr/dev-mcp/tree/main/smithery
