Manage Cloudflare Workers KV namespaces using the cf-bindings MCP server.
Perform Cloudflare Workers KV operations like listing namespaces, getting/setting values, and creating namespaces through the cf-bindings MCP server. Use this when you need to manage key-value storage for your Cloudflare Workers applications.
/plugin marketplace add W3Dev/coding-agent/plugin install w3dev-cloudflare-workers-plugin-plugins-cloudflare-workers@W3Dev/coding-agentManage Cloudflare Workers KV namespaces using the cf-bindings MCP server.
/cf-kv <action> [namespace] [key] [value]
/cf-kv list
/cf-kv get MY_NAMESPACE my-key
/cf-kv put MY_NAMESPACE my-key "my-value"
/cf-kv delete MY_NAMESPACE my-key
/cf-kv create my-new-namespace
list - List all KV namespaces in accountget <namespace> <key> - Get value for a keyput <namespace> <key> <value> - Set key-value pairdelete <namespace> <key> - Delete a keycreate <namespace> - Create new KV namespaceaction (required): KV operation to performnamespace (optional): KV namespace ID or binding namekey (optional): Key name for get/put/deletevalue (optional): Value for put operation