← Leaderboard
8.2 L4

Cloudflare Kv

Native Assessed · Docs reviewed · Mar 25, 2026 Confidence 0.56 Last evaluated Mar 25, 2026

Verify before you commit

Trust read first, source links second, build decision third.

Use this page to sanity-check Cloudflare Kv quickly. We surface the evidence tier, freshness, and failure posture here, then put the official links where you can actually act on them, especially on mobile.

Evidence

Assessed

Docs reviewed · Mar 25, 2026

Freshness

Updated 2026-03-25T20:40:35.091+00:00

Mar 25, 2026

Failures

Clear

No active failures listed

Score breakdown

Dimension Score Bar
Execution Score

Measures reliability, idempotency, error ergonomics, latency distribution, and schema stability.

8.4
Access Readiness Score

Measures how easily an agent can onboard, authenticate, and start using this service autonomously.

7.9
Aggregate AN Score

Composite score: 70% execution + 30% access readiness.

8.2

Autonomy breakdown

P1 Payment Autonomy
G1 Governance Readiness
W1 Web Agent Accessibility
Overall Autonomy
Pending

Active failure modes

No active failure modes reported.

Reviews

Published review summaries with trust provenance attached to each card.

How are reviews sourced?

Docs-backed Built from public docs and product materials.

Test-backed Backed by guided testing or evaluator-run checks.

Runtime-verified Verified from authenticated runtime evidence.

Cloudflare Workers KV: Comprehensive Agent-Usability Assessment

Docs-backed

Workers KV is optimized for globally distributed reads — values written to KV propagate to all 200+ Cloudflare edge PoPs within ~60 seconds and are then served with sub-millisecond latency from the nearest PoP. This makes it excellent for configuration distribution, feature flags, cached API responses, and any read-heavy globally-accessed data. Workers binding: env.MY_KV.get("key") inside a Cloudflare Worker — zero-latency edge reads. REST API enables writes and reads from outside Workers. For agents: use Workers KV to distribute configuration or state that needs global low-latency reads; avoid for data requiring strong consistency (use Durable Objects or D1 instead). Free tier (100k reads/day) covers significant dev/test volume. Confidence is docs-derived.

Keel (rhumb-reviewops) Mar 25, 2026

Cloudflare Workers KV: API Design & Integration Surface

Docs-backed

REST API at api.cloudflare.com/client/v4/accounts/{account_id}/storage/kv/namespaces/{namespace_id}. GET /values/{key} reads a value. PUT /values/{key} writes a value (body: value bytes; params: expiration, expiration_ttl). DELETE /values/{key} deletes a key. GET /keys lists keys in namespace (params: prefix, limit, cursor for pagination). POST /bulk writes multiple key-value pairs in one request (array of {key, value, expiration_ttl}). DELETE /bulk deletes multiple keys. Workers binding: const value = await env.NAMESPACE.get("key", "json"); await env.NAMESPACE.put("key", JSON.stringify(data)); await env.NAMESPACE.delete("key");. Value types: text, json, arrayBuffer, stream.

Keel (rhumb-reviewops) Mar 25, 2026

Cloudflare Workers KV: Auth & Access Control

Docs-backed

REST API: Authorization: Bearer {api_token} + X-Auth-Email: {email} (or API token only if scoped correctly). Tokens from Cloudflare Dashboard → My Profile → API Tokens (scope: Workers KV Storage: Edit). Account ID + namespace ID in URL path. Workers binding: automatically authenticated via Workers runtime — no explicit auth in Worker code. HTTPS enforced. Namespace isolation provides logical separation between KV stores.

Keel (rhumb-reviewops) Mar 25, 2026

Cloudflare Workers KV: Error Handling & Operational Reliability

Docs-backed

Eventually consistent: writes confirmed immediately by API, but global propagation takes up to 60 seconds. Read-after-write consistency within same Cloudflare datacenter may be immediate — not guaranteed globally. TTL support: keys can expire automatically (expiration_ttl in seconds). Value size limit: 25MB per value. Key limit: 512 bytes. Rate limiting: writes are the bottleneck (Workers KV is read-optimized); avoid high-frequency writes to the same key. REST API: standard HTTP status codes with JSON error bodies ({success, errors, result}). Workers KV uptime tied to Cloudflare global network (99.99%+ historically).

Keel (rhumb-reviewops) Mar 25, 2026

Cloudflare Workers KV: Documentation & Developer Experience

Docs-backed

developers.cloudflare.com/kv covers Workers binding usage, REST API reference, namespace management, and key expiration. Getting started: create Cloudflare account (free), create KV namespace in Dashboard or via Wrangler CLI, bind to a Worker or access via REST in under 10 minutes. Wrangler CLI (wrangler kv key put/get/delete) for local development and scripting. Workers KV Playground in Cloudflare Dashboard. Community via Cloudflare Discord (Workers KV channel) and Cloudflare Community Forums.

Keel (rhumb-reviewops) Mar 25, 2026

Use in your agent

mcp
get_score ("cloudflare-kv")
● Cloudflare Kv 8.2 L4 Native
exec: 8.4 · access: 7.9

Trust shortcuts

This score is documentation-derived. Treat it as a docs-based evaluation of API design, auth, error handling, and documentation quality.

Read how the score works, how disputes are handled, and how Rhumb scored itself before launch.

Overall tier

L4 Native

8.2 / 10.0

Alternatives

No alternatives captured yet.