upstash-redis-start

โดย upstash

Provision a zero-config, no-signup Upstash Redis database for an AI agent via a single POST to `https://upstash.com/start-redis`. Use when an agent needs…

npx skills add https://github.com/upstash/skills --skill upstash-redis-start

Upstash Redis for Agents (start-redis)

A zero-config Redis database for AI agents — no signup, no UI, no SDK setup. One HTTP request returns a working endpoint + token. Databases live for 3 days unless the user claims them.

Use this when:

  • The agent needs Redis right now and the user has not given you credentials.
  • You want short-term memory across tool calls, conversation history, a sub-agent work queue, or recent-first ranked recall.

This is built for quick experiments, prototypes, and demos rather than production workloads or anything tied to a real user account — the database is temporary and unauthenticated until claimed, so keep PII, secrets, and production credentials out of it.

Create or re-fetch a database

# Generate a fresh UUIDv4 yourself, then POST it as the Idempotency-Key.
# The UUIDv4 you send becomes the database id.
curl -X POST -H "Idempotency-Key: <uuidv4>" https://upstash.com/start-redis
  • Sending your own UUIDv4 makes the first call retry-safe — if the response is lost, retrying with the same UUID returns the same database instead of minting a duplicate.
  • Re-POST with the same Idempotency-Key to re-fetch credentials for an existing database.
  • The header is optional. Omit it to mint a new database with a server-generated id (returned in the response — re-fetch later by passing that id back as Idempotency-Key). Only UUIDv4 is accepted.

The response is markdown containing:

  • Database ID, Endpoint, Token
  • Metrics URL (JSON: uptime, commands, keys, throughput, memory, bandwidth)
  • Expires date
  • Console URL to share with the user (where they view usage and click Claim to keep the database)
  • An inline quickstart for the body-style REST API

Parse these out of the markdown response and use them directly — there is no separate JSON envelope.

Calling the database (body-style REST)

The returned endpoint speaks the Upstash Redis REST API. Prefer the body-style form: POST a JSON array as the body so you don't have to URL-encode the command.

# SET with TTL
curl https://<endpoint> \
  -H "Authorization: Bearer <token>" \
  -d '["SET","session:abc","{\"step\":2}","EX","3600"]'

# GET
curl https://<endpoint> \
  -H "Authorization: Bearer <token>" \
  -d '["GET","session:abc"]'

You can also use the official SDKs against the same endpoint + token (@upstash/redis for TS/JS, upstash-redis for Python).

Common agent patterns

NeedCommands
Short-term memory across tool calls in one runSET key value EX <ttl> / GET key
Conversation / turn-by-turn logLPUSH chat:<user> <json> / LRANGE chat:<user> 0 20
Sub-agent work queue (producer/consumer)LPUSH jobs <json> / RPOP jobs
Ranked memory (recent-first or score-first)ZADD memories <score> <member> / ZREVRANGE memories 0 9

Tell the user

After provisioning, surface the console URL from the response to the user. Make clear that:

  • The database expires in 3 days.
  • They can view usage at the console URL and click Claim to keep it.
  • This is unauthenticated scratch storage — don't put secrets or PII in it.

Reference

Skills เพิ่มเติมจาก upstash

context7-docs
upstash
ดึงเอกสารประกอบและตัวอย่างโค้ดที่ทันสมัยสำหรับไลบรารี เฟรมเวิร์ก SDK เครื่องมือ CLI หรือบริการคลาวด์ใดๆ ใช้เมื่อผู้ใช้ถามเกี่ยวกับเฉพาะ…
official
context7-mcp
upstash
ทักษะนี้ควรใช้เมื่อผู้ใช้ถามเกี่ยวกับไลบรารี เฟรมเวิร์ก เอกสารอ้างอิง API หรือต้องการตัวอย่างโค้ด เปิดใช้งานสำหรับคำถามเกี่ยวกับการตั้งค่า โค้ด…
official
ctx7-cli
upstash
ใช้ CLI ctx7 เพื่อดึงเอกสารไลบรารี จัดการทักษะการเขียนโค้ด AI และกำหนดค่า Context7 MCP เปิดใช้งานเมื่อผู้ใช้พูดถึง "ctx7" หรือ "context7"...
official
docs
upstash
ดึงข้อมูลและค้นหาเอกสารประกอบและตัวอย่างโค้ดที่ทันสมัยจาก Context7 สำหรับไลบรารีหรือเฟรมเวิร์กการเขียนโปรแกรมใดๆ ใช้เมื่อเขียนโค้ดที่ขึ้นอยู่กับ…
official
documentation-lookup
upstash
ดึงเอกสารไลบรารีและตัวอย่างโค้ดล่าสุด แทนการพึ่งพาข้อมูลฝึกฝน แก้ไขชื่อไลบรารีเป็นรหัสเอกสาร Context7 จากนั้นค้นหาข้อมูลการตั้งค่า การกำหนดค่า และเอกสารอ้างอิง API รองรับเฟรมเวิร์กและไลบรารีหลัก: React, Vue, Svelte, Next.js, Express, Prisma, Supabase, Tailwind และอื่นๆ เปิดใช้งานโดยอัตโนมัติสำหรับคำถามเกี่ยวกับการตั้งค่า คำขอสร้างโค้ด และคำถามเฉพาะเฟรมเวิร์ก ส่งคืนเอกสารที่คำนึงถึงเวอร์ชันและโค้ดอย่างเป็นทางการ...
official
find-docs
upstash
ดึงเอกสารและตัวอย่างโค้ดล่าสุดสำหรับไลบรารีใดๆ โดยใช้ Context7 CLI
official
redis-js
upstash
ทำงานกับ Upstash Redis JavaScript/TypeScript SDK สำหรับการดำเนินการ Redis แบบไร้เซิร์ฟเวอร์ ใช้สำหรับแคช การจัดเก็บเซสชัน การจำกัดอัตรา ลีดเดอร์บอร์ด การค้นหาข้อความแบบเต็ม…
official
upstash-search-js
upstash
จุดเริ่มต้นสำหรับทักษะด้านเอกสารที่ครอบคลุมการเริ่มต้นใช้งาน Upstash Search อย่างรวดเร็ว แนวคิดหลัก และการใช้งาน TypeScript SDK ใช้เมื่อผู้ใช้ถามถึงวิธีการเริ่มต้น…
official