# Cloudflare Containers (verified)

Container sandbox management. Spin up isolated development environments on Cloudflare.

## Quick Start

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

# Browse available tools
npx -y @smithery/cli@latest tool list cloudflare/containers

# Get full schema for a tool
npx -y @smithery/cli@latest tool get cloudflare/containers container_initialize

# Call a tool
npx -y @smithery/cli@latest tool call cloudflare/containers container_initialize '{}'
```

## Direct MCP Connection

Endpoint: `https://cloudflare-containers.run.tools`

## Tools (7)

- `container_initialize` — Start or restart the container.
- `container_ping` — Ping the container for liveliness. Use this tool to check if the container is running.
- `container_exec` — Run a command in a container and return the results from stdout.
- `container_file_delete` — Delete file in the working directory
- `container_file_write` — Create a new file with the provided contents in the working direcotry, overwriting the file if it already exists
- `container_files_list` — List working directory file tree. This just reads the contents of the current working directory
- `container_file_read` — Read a specific file or directory. Use this tool if you would like to read files or display them to the user. This allo…

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