# Cloudflare Workers Bindings (verified)

Workers bindings management. Build Workers applications with storage, AI, and compute primitives.

## Quick Start

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

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

# Get full schema for a tool
npx -y @smithery/cli@latest tool get cloudflare/workers-bindings accounts_list

# Call a tool
npx -y @smithery/cli@latest tool call cloudflare/workers-bindings accounts_list '{}'
```

## Direct MCP Connection

Endpoint: `https://cloudflare-workers-bindings.run.tools`

## Tools (25)

- `accounts_list` — List all accounts in your Cloudflare account
- `set_active_account` — Set active account to be used for tool calls that require accountId
- `kv_namespaces_list`
- `kv_namespace_create` — Create a new kv namespace in your Cloudflare account
- `kv_namespace_delete` — Delete a kv namespace in your Cloudflare account
- `kv_namespace_get` — Get details of a kv namespace in your Cloudflare account.
- `kv_namespace_update` — Update the title of a kv namespace in your Cloudflare account
- `workers_list` — List all Workers in your Cloudflare account.
- `workers_get_worker` — Get the details of the Cloudflare Worker.
- `workers_get_worker_code` — Get the source code of a Cloudflare Worker. Note: This may be a bundled version of the worker.
- `r2_buckets_list` — List r2 buckets in your Cloudflare account
- `r2_bucket_create` — Create a new r2 bucket in your Cloudflare account
- `r2_bucket_get` — Get details about a specific R2 bucket
- `r2_bucket_delete` — Delete an R2 bucket
- `d1_databases_list` — List all of the D1 databases in your Cloudflare account
- `d1_database_create` — Create a new D1 database in your Cloudflare account
- `d1_database_delete` — Delete a d1 database in your Cloudflare account
- `d1_database_get` — Get a D1 database in your Cloudflare account
- `d1_database_query` — Query a D1 database in your Cloudflare account
- `hyperdrive_configs_list` — List Hyperdrive configurations in your Cloudflare account
- `hyperdrive_config_delete` — Delete a Hyperdrive configuration in your Cloudflare account
- `hyperdrive_config_get` — Get details of a specific Hyperdrive configuration in your Cloudflare account
- `hyperdrive_config_edit` — Edit (patch) a Hyperdrive configuration in your Cloudflare account
- `search_cloudflare_documentation` — Search the Cloudflare documentation.
- `migrate_pages_to_workers_guide` — ALWAYS read this guide before migrating Pages projects to Workers.

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

## Prompts (1)

- `workers-prompt-full` — Detailed prompt for generating Cloudflare Workers code (and other developer platform products) from https://developers.…
