# File Deletion

A Model Context Protocol (MCP) server that provides file deletion capabilities, allowing AI assistants to safely delete files with support for both relative and absolute paths.

## Quick Start

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

# Browse available tools
npx -y @smithery/cli@latest tool list qpd-v/mcp-delete

# Get full schema for a tool
npx -y @smithery/cli@latest tool get qpd-v/mcp-delete delete_file

# Call a tool
npx -y @smithery/cli@latest tool call qpd-v/mcp-delete delete_file '{}'
```

## Tools (1)

- `delete_file` — Delete a file at the specified path (supports both relative and absolute paths)

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get qpd-v/mcp-delete <tool-name>
```

---

Source: https://github.com/qpd-v/mcp-delete | License: MIT
