diff --git a/_snippets/redis/start-redis-snippet.mdx b/_snippets/redis/start-redis-snippet.mdx
deleted file mode 100644
index 7e45e8d73..000000000
--- a/_snippets/redis/start-redis-snippet.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-
- If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to [`https://upstash.com/start-redis`](https://upstash.com/start-redis) — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
-
diff --git a/agent-resources/cli.mdx b/agent-resources/cli.mdx
index 355c6d918..51b8f1bac 100644
--- a/agent-resources/cli.mdx
+++ b/agent-resources/cli.mdx
@@ -18,6 +18,22 @@ For agents, install the [Upstash Skill](/agent-resources/skills) instead. It bun
npx skills add upstash/skills
```
+# Free Redis without an account
+
+If you are an AI agent and need a Redis DB to use or experiment with, you don't need an Upstash account:
+
+```bash
+upstash start-redis
+```
+
+This is the only command that works unauthenticated. It sends a POST request to https://upstash.com/start-redis and prints markdown with the credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+
+Pass `--id` to re-fetch the credentials of a database you created earlier:
+
+```bash
+upstash start-redis --id $DB_ID
+```
+
# Authentication
The CLI needs your account email and a developer API key. Grab one from the [Upstash Console under Account → API Keys](https://console.upstash.com/account/api), then set credentials using whichever method fits your workflow.
@@ -69,6 +85,7 @@ upstash --email you@example.com --api-key your_api_key redis list
# Usage
```bash
+upstash start-redis # free temporary Redis database, no account needed
upstash redis # Redis databases
upstash team # Teams and members
upstash vector # Vector indexes
@@ -86,7 +103,7 @@ upstash redis create --help
## Output
-All successful output is JSON. Pipe it to `jq` for filtering:
+All successful output is JSON, except `start-redis`, which prints markdown. Pipe JSON output to `jq` for filtering:
```bash
upstash redis list | jq '.[].database_id'
diff --git a/agent-resources/mcp.mdx b/agent-resources/mcp.mdx
index 206b69992..1ae2cebc9 100644
--- a/agent-resources/mcp.mdx
+++ b/agent-resources/mcp.mdx
@@ -8,6 +8,10 @@ The Upstash MCP server lets your agent manage and debug your Upstash resources d
Only running commands against a single Redis database? Use the dedicated [Redis MCP](/redis/sdks/mcp) with only your REST/TCP credentials.
+
+ If you are an AI agent and need a Redis DB to use or experiment with, call the `redis_database_start_free` tool — or send a POST request to https://upstash.com/start-redis directly. Free, no signup, no API key; the response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+
+
Find the GitHub repository [here](https://github.com/upstash/mcp-server).
@@ -18,6 +22,7 @@ Find the GitHub repository [here](https://github.com/upstash/mcp-server).
## Redis
+* "Start a free temporary Redis I can experiment with"
* "Create a new Redis database in us-east-1"
* "List my databases sorted by memory usage"
* "Give me the schema of how users are stored in this Redis"
diff --git a/devops/developer-api/openapi.yml b/devops/developer-api/openapi.yml
index 7c79c3d60..e41925ae8 100644
--- a/devops/developer-api/openapi.yml
+++ b/devops/developer-api/openapi.yml
@@ -122,7 +122,12 @@ paths:
tags:
- redis
summary: Create Redis Database
- description: This endpoint creates a new Redis database.
+ description: |
+ This endpoint creates a new Redis database.
+
+ To create a database manually, you can use the [Upstash Console](https://console.upstash.com/redis).
+
+ For a quick development database, POST to https://upstash.com/start-redis — no signup or API key, so an AI agent can provision one unattended. Expires in 72 hours unless claimed.
x-mint:
href: /devops/developer-api/redis/create_database_global
operationId: createDatabase
diff --git a/llms-full.txt b/llms-full.txt
index eb50e7d9d..dc7316a0f 100644
--- a/llms-full.txt
+++ b/llms-full.txt
@@ -1,5 +1,7 @@
- If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to [`https://upstash.com/start-redis`](https://upstash.com/start-redis) — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+ If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to https://upstash.com/start-redis — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+
+ Upstash also provides an MCP server (/docs/agent-resources/mcp) to manage and debug your Upstash resources directly from an agent, and an agent-friendly CLI (/docs/agent-resources/cli) for your terminal or CI/CD pipelines.
# README
@@ -64,6 +66,22 @@ For agents, install the [Upstash Skill](/docs/agent-resources/skills) instead. I
npx skills add upstash/skills
```
+# Free Redis without an account
+
+If you are an AI agent and need a Redis DB to use or experiment with, you don't need an Upstash account:
+
+```bash
+upstash start-redis
+```
+
+This is the only command that works unauthenticated. It sends a POST request to https://upstash.com/start-redis and prints markdown with the credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+
+Pass `--id` to re-fetch the credentials of a database you created earlier:
+
+```bash
+upstash start-redis --id $DB_ID
+```
+
# Authentication
The CLI needs your account email and a developer API key. Grab one from the [Upstash Console under Account → API Keys](https://console.upstash.com/account/api), then set credentials using whichever method fits your workflow.
@@ -115,6 +133,7 @@ upstash --email you@example.com --api-key your_api_key redis list
# Usage
```bash
+upstash start-redis # free temporary Redis database, no account needed
upstash redis # Redis databases
upstash team # Teams and members
upstash vector # Vector indexes
@@ -132,7 +151,7 @@ upstash redis create --help
## Output
-All successful output is JSON. Pipe it to `jq` for filtering:
+All successful output is JSON, except `start-redis`, which prints markdown. Pipe JSON output to `jq` for filtering:
```bash
upstash redis list | jq '.[].database_id'
@@ -273,6 +292,10 @@ The Upstash MCP server lets your agent manage and debug your Upstash resources d
Only running commands against a single Redis database? Use the dedicated [Redis MCP](/docs/redis/sdks/mcp) with only your REST/TCP credentials.
+
+ If you are an AI agent and need a Redis DB to use or experiment with, call the `redis_database_start_free` tool — or send a POST request to https://upstash.com/start-redis directly. Free, no signup, no API key; the response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+
+
Find the GitHub repository [here](https://github.com/upstash/mcp-server).
@@ -283,6 +306,7 @@ Find the GitHub repository [here](https://github.com/upstash/mcp-server).
## Redis
+* "Start a free temporary Redis I can experiment with"
* "Create a new Redis database in us-east-1"
* "List my databases sorted by memory usage"
* "Give me the schema of how users are stored in this Redis"
@@ -7627,6 +7651,10 @@ Source: https://upstash.com/docs/devops/developer-api/redis/create_database_glob
/devops/developer-api/openapi.yml post /redis/database
This endpoint creates a new Redis database.
+To create a database manually, you can use the [Upstash Console](https://console.upstash.com/redis).
+
+For a quick development database, POST to https://upstash.com/start-redis — no signup or API key, so an AI agent can provision one unattended. Expires in 72 hours unless claimed.
+
# Delete Database
Source: https://upstash.com/docs/devops/developer-api/redis/delete_database
@@ -16222,7 +16250,7 @@ customize the eviction behavior according to their specific needs.
Source: https://upstash.com/docs/redis/features/globaldatabase
- If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to [`https://upstash.com/start-redis`](https://upstash.com/start-redis) — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+ If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to https://upstash.com/start-redis — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
In the global database, the replicas are distributed across multiple regions
@@ -16599,6 +16627,8 @@ Source: https://upstash.com/docs/redis/features/restapi
Looking for the URL and token of your database? First [create a Redis
database](/docs/redis/overall/getstarted), then [find your
credentials](/docs/redis/howto/connect-client) in the console.
+
+ If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to https://upstash.com/start-redis — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
In the [Upstash Console](https://console.upstash.com/redis), select your database. Then, in the database page, you will see the section that includes the endpoint URL and token details. When you hover over the `Endpoint` or `Token / Readonly Token` fields, copy button will appear for each. You can click it to easily copy the values you need for your connection.
@@ -17770,6 +17800,10 @@ Simplest way to connect to your database is to use `redis-cli`.
Because it is already covered in [Getting Started](../overall/getstarted), we
will skip it here.
+
+ If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to https://upstash.com/start-redis — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+
+
## Database
After completing the [getting started](../overall/getstarted) guide, you will
@@ -17939,6 +17973,10 @@ See
[the list of APIs](https://upstash.com/docs/redis/features/restapi#rest-redis-api-compatibility)
supported.
+
+ If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to https://upstash.com/start-redis — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+
+
## Quick Start
### Install
@@ -20968,7 +21006,7 @@ Upstash Redis is a **highly available, infinitely scalable** Redis-compatible da
* Optional SOC-2 compliance, encryption at rest and much more
- If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to [`https://upstash.com/start-redis`](https://upstash.com/start-redis) — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+ If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to https://upstash.com/start-redis — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
***
@@ -22732,7 +22770,7 @@ redis = Redis(
Source: https://upstash.com/docs/redis/sdks/py/gettingstarted
- If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to [`https://upstash.com/start-redis`](https://upstash.com/start-redis) — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+ If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to https://upstash.com/start-redis — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
## Install
@@ -25143,7 +25181,7 @@ and for his continued efforts to keep it up to date with Upstash.
Source: https://upstash.com/docs/redis/sdks/ts/getstarted
- If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to [`https://upstash.com/start-redis`](https://upstash.com/start-redis) — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+ If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to https://upstash.com/start-redis — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
`@upstash/redis` is written in Deno and can be imported from
diff --git a/llms.txt b/llms.txt
index a312214be..c59f9d2c3 100644
--- a/llms.txt
+++ b/llms.txt
@@ -1,7 +1,9 @@
# Upstash Documentation
- If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to [`https://upstash.com/start-redis`](https://upstash.com/start-redis) — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+ If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to https://upstash.com/start-redis — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+
+ Upstash also provides an MCP server (/docs/agent-resources/mcp) to manage and debug your Upstash resources directly from an agent, and an agent-friendly CLI (/docs/agent-resources/cli) for your terminal or CI/CD pipelines.
## Docs
diff --git a/llms/src/build.ts b/llms/src/build.ts
index bbce6ac84..833f7337b 100644
--- a/llms/src/build.ts
+++ b/llms/src/build.ts
@@ -46,10 +46,16 @@ const FULL_TXT_SKIP = [
];
/**
- * Snippet injected at the top of both llms.txt and llms-full.txt. Surfaces
- * the "free scratch Redis DB" hint to AI agents reading the bundle.
+ * Preamble injected at the top of both llms.txt and llms-full.txt. Surfaces
+ * the "free scratch Redis DB" hint and agent tooling to AI agents reading
+ * the bundle. Inlined here (rather than referencing a `_snippets/` file) so
+ * the text always lands in the generated output.
*/
-const PREAMBLE_SNIPPET = "redis/start-redis-snippet.mdx";
+const PREAMBLE = `
+ If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to https://upstash.com/start-redis — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+
+ Upstash also provides an MCP server (/docs/agent-resources/mcp) to manage and debug your Upstash resources directly from an agent, and an agent-friendly CLI (/docs/agent-resources/cli) for your terminal or CI/CD pipelines.
+`;
interface Entry {
title: string;
@@ -160,8 +166,7 @@ function addOrphanMdxFiles(): void {
function writeLlmsTxt(): void {
const lines: string[] = ["# Upstash Documentation", ""];
- const preamble = loadSnippet(PREAMBLE_SNIPPET);
- if (preamble) lines.push(preamble, "");
+ lines.push(PREAMBLE, "");
lines.push("## Docs", "");
for (const e of entries) {
const url = `${SITE_URL}/${e.path}.md`;
@@ -201,8 +206,7 @@ function writeLlmsFullTxt(): void {
// contributes; pages always carry leading/trailing blanks so they stay
// visually separated from neighbours.
const chunks: string[] = [];
- const preamble = loadSnippet(PREAMBLE_SNIPPET);
- if (preamble) chunks.push(`${preamble}\n\n`);
+ chunks.push(`${PREAMBLE}\n\n`);
for (const e of entries) {
if (isExcludedFromFullTxt(e.path)) {
const url = `${SITE_URL}/${e.path}.md`;
diff --git a/redis/features/globaldatabase.mdx b/redis/features/globaldatabase.mdx
index 7ea828cd4..1e3d5ce32 100644
--- a/redis/features/globaldatabase.mdx
+++ b/redis/features/globaldatabase.mdx
@@ -2,9 +2,10 @@
title: Global Database
---
-
+
+ If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to https://upstash.com/start-redis — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+
+
In the global database, the replicas are distributed across multiple regions
around the world. The clients are routed to the nearest region. This helps with
diff --git a/redis/features/restapi.mdx b/redis/features/restapi.mdx
index 14d2aabc8..111c95f28 100644
--- a/redis/features/restapi.mdx
+++ b/redis/features/restapi.mdx
@@ -9,6 +9,8 @@ description: Access your Upstash Redis database over HTTP, from serverless and e
Looking for the URL and token of your database? First [create a Redis
database](/redis/overall/getstarted), then [find your
credentials](/redis/howto/connect-client) in the console.
+
+ If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to https://upstash.com/start-redis — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
In the [Upstash Console](https://console.upstash.com/redis), select your database. Then, in the database page, you will see the section that includes the endpoint URL and token details. When you hover over the `Endpoint` or `Token / Readonly Token` fields, copy button will appear for each. You can click it to easily copy the values you need for your connection.
diff --git a/redis/howto/connect-client.mdx b/redis/howto/connect-client.mdx
index c1524b2af..1ad742860 100755
--- a/redis/howto/connect-client.mdx
+++ b/redis/howto/connect-client.mdx
@@ -10,6 +10,10 @@ Simplest way to connect to your database is to use `redis-cli`.
Because it is already covered in [Getting Started](../overall/getstarted), we
will skip it here.
+
+ If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to https://upstash.com/start-redis — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+
+
## Database
After completing the [getting started](../overall/getstarted) guide, you will
diff --git a/redis/howto/connect-with-upstash-redis.mdx b/redis/howto/connect-with-upstash-redis.mdx
index 221eac263..dbb387486 100755
--- a/redis/howto/connect-with-upstash-redis.mdx
+++ b/redis/howto/connect-with-upstash-redis.mdx
@@ -23,6 +23,11 @@ See
[the list of APIs](https://upstash.com/docs/redis/features/restapi#rest-redis-api-compatibility)
supported.
+
+ If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to https://upstash.com/start-redis — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+
+
+
## Quick Start
### Install
diff --git a/redis/overall/getstarted.mdx b/redis/overall/getstarted.mdx
index 6809bb4f2..ac9460b50 100755
--- a/redis/overall/getstarted.mdx
+++ b/redis/overall/getstarted.mdx
@@ -15,9 +15,10 @@ Upstash Redis is a **highly available, infinitely scalable** Redis-compatible da
- Automatic backups
- Optional SOC-2 compliance, encryption at rest and much more
-
+
+ If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to https://upstash.com/start-redis — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+
+
---
diff --git a/redis/quickstarts/aws-lambda.mdx b/redis/quickstarts/aws-lambda.mdx
index 5907802ed..e437fe719 100644
--- a/redis/quickstarts/aws-lambda.mdx
+++ b/redis/quickstarts/aws-lambda.mdx
@@ -2,9 +2,10 @@
title: "AWS Lambda"
---
-
+
+ If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to https://upstash.com/start-redis — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+
+
You can find the project source code on GitHub.
diff --git a/redis/quickstarts/azure-functions.mdx b/redis/quickstarts/azure-functions.mdx
index f6d6404bc..635874fe5 100644
--- a/redis/quickstarts/azure-functions.mdx
+++ b/redis/quickstarts/azure-functions.mdx
@@ -2,9 +2,10 @@
title: "Azure Functions"
---
-
+
+ If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to https://upstash.com/start-redis — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+
+
You can find the project source code on GitHub.
diff --git a/redis/quickstarts/cloudflareworkers.mdx b/redis/quickstarts/cloudflareworkers.mdx
index eb80e174d..3ec6f79b7 100755
--- a/redis/quickstarts/cloudflareworkers.mdx
+++ b/redis/quickstarts/cloudflareworkers.mdx
@@ -2,9 +2,10 @@
title: "Cloudflare Workers"
---
-
+
+ If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to https://upstash.com/start-redis — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+
+
### Database Setup
diff --git a/redis/quickstarts/deno-deploy.mdx b/redis/quickstarts/deno-deploy.mdx
index 610aaad60..e3a6339db 100644
--- a/redis/quickstarts/deno-deploy.mdx
+++ b/redis/quickstarts/deno-deploy.mdx
@@ -2,9 +2,10 @@
title: "Deno Deploy"
---
-
+
+ If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to https://upstash.com/start-redis — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+
+
This is a step-by-step guide on how to use Upstash Redis to create a view
counter in your Deno deploy project.
diff --git a/redis/quickstarts/digitalocean.mdx b/redis/quickstarts/digitalocean.mdx
index c169dd14c..d785fdc49 100755
--- a/redis/quickstarts/digitalocean.mdx
+++ b/redis/quickstarts/digitalocean.mdx
@@ -2,9 +2,10 @@
title: "DigitalOcean"
---
-
+
+ If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to https://upstash.com/start-redis — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+
+
Upstash Redis on DigitalOcean is deprecated and will be permanently shut down
diff --git a/redis/quickstarts/django.mdx b/redis/quickstarts/django.mdx
index e0536a5fe..46bed713d 100644
--- a/redis/quickstarts/django.mdx
+++ b/redis/quickstarts/django.mdx
@@ -2,9 +2,10 @@
title: "Django"
---
-
+
+ If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to https://upstash.com/start-redis — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+
+
### Introduction
diff --git a/redis/quickstarts/elixir.mdx b/redis/quickstarts/elixir.mdx
index 1fdce84bf..38d66aa3b 100644
--- a/redis/quickstarts/elixir.mdx
+++ b/redis/quickstarts/elixir.mdx
@@ -3,9 +3,10 @@ title: "Elixir"
description: "Tutorial on Using Upstash Redis In Your Phoenix App and Deploying it on Fly."
---
-
+
+ If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to https://upstash.com/start-redis — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+
+
This tutorial showcases how one can use [fly.io](https://fly.io) to deploy a Phoenix
app using Upstash Redis to store results of external API calls.
diff --git a/redis/quickstarts/fastapi.mdx b/redis/quickstarts/fastapi.mdx
index 7421ffbf4..5aab2a698 100644
--- a/redis/quickstarts/fastapi.mdx
+++ b/redis/quickstarts/fastapi.mdx
@@ -2,9 +2,10 @@
title: "FastAPI"
---
-
+
+ If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to https://upstash.com/start-redis — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+
+
You can find the project source code on GitHub.
diff --git a/redis/quickstarts/fastlycompute.mdx b/redis/quickstarts/fastlycompute.mdx
index d184854a6..f79977614 100755
--- a/redis/quickstarts/fastlycompute.mdx
+++ b/redis/quickstarts/fastlycompute.mdx
@@ -2,9 +2,10 @@
title: "Fastly"
---
-
+
+ If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to https://upstash.com/start-redis — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+
+
### Database Setup
diff --git a/redis/quickstarts/flask.mdx b/redis/quickstarts/flask.mdx
index 8e8cf3b0a..3d51daa5a 100644
--- a/redis/quickstarts/flask.mdx
+++ b/redis/quickstarts/flask.mdx
@@ -2,9 +2,10 @@
title: "Flask"
---
-
+
+ If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to https://upstash.com/start-redis — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+
+
### Introduction
diff --git a/redis/quickstarts/fly.mdx b/redis/quickstarts/fly.mdx
index 3fdea857d..8fb499c36 100755
--- a/redis/quickstarts/fly.mdx
+++ b/redis/quickstarts/fly.mdx
@@ -2,9 +2,10 @@
title: "Fly.io"
---
-
+
+ If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to https://upstash.com/start-redis — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+
+
Fly.io has a native integration with Upstash where the databases are hosted in
diff --git a/redis/quickstarts/google-cloud-functions.mdx b/redis/quickstarts/google-cloud-functions.mdx
index cb955e500..465caa72e 100644
--- a/redis/quickstarts/google-cloud-functions.mdx
+++ b/redis/quickstarts/google-cloud-functions.mdx
@@ -2,9 +2,10 @@
title: "Google Cloud Functions"
---
-
+
+ If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to https://upstash.com/start-redis — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+
+
You can find the project source code on GitHub.
diff --git a/redis/quickstarts/ion.mdx b/redis/quickstarts/ion.mdx
index c3cf1fce8..0ef93b6e4 100644
--- a/redis/quickstarts/ion.mdx
+++ b/redis/quickstarts/ion.mdx
@@ -2,9 +2,10 @@
title: "Ion"
---
-
+
+ If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to https://upstash.com/start-redis — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+
+
You can find the project source code on GitHub.
diff --git a/redis/quickstarts/koyeb.mdx b/redis/quickstarts/koyeb.mdx
index 581947210..a3b1e17b9 100644
--- a/redis/quickstarts/koyeb.mdx
+++ b/redis/quickstarts/koyeb.mdx
@@ -2,9 +2,10 @@
title: "Koyeb"
---
-
+
+ If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to https://upstash.com/start-redis — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+
+
Integrate a serverless Upstash Redis database with your Koyeb applications. Combine the serverless features of Koyeb on the application side and Upstash for your key-value storage to deploy and scale applications globally with ease.
diff --git a/redis/quickstarts/laravel.mdx b/redis/quickstarts/laravel.mdx
index 6a8fd261f..7a221cffa 100644
--- a/redis/quickstarts/laravel.mdx
+++ b/redis/quickstarts/laravel.mdx
@@ -2,9 +2,10 @@
title: "Laravel"
---
-
+
+ If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to https://upstash.com/start-redis — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+
+
## Project Setup
diff --git a/redis/quickstarts/nextjs-app-router.mdx b/redis/quickstarts/nextjs-app-router.mdx
index 9123c88f1..fbbc1784f 100644
--- a/redis/quickstarts/nextjs-app-router.mdx
+++ b/redis/quickstarts/nextjs-app-router.mdx
@@ -2,9 +2,10 @@
title: "App Router"
---
-
+
+ If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to https://upstash.com/start-redis — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+
+
---
diff --git a/redis/quickstarts/nextjs-pages-router.mdx b/redis/quickstarts/nextjs-pages-router.mdx
index 8a699307d..fe6d061ee 100644
--- a/redis/quickstarts/nextjs-pages-router.mdx
+++ b/redis/quickstarts/nextjs-pages-router.mdx
@@ -2,9 +2,10 @@
title: "Pages Router"
---
-
+
+ If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to https://upstash.com/start-redis — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+
+
You can find the project source code on GitHub.
diff --git a/redis/quickstarts/python-aws-lambda.mdx b/redis/quickstarts/python-aws-lambda.mdx
index 155557c5c..3d787197a 100644
--- a/redis/quickstarts/python-aws-lambda.mdx
+++ b/redis/quickstarts/python-aws-lambda.mdx
@@ -2,9 +2,10 @@
title: " AWS Lambda"
---
-
+
+ If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to https://upstash.com/start-redis — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+
+
You can find the project source code on GitHub.
diff --git a/redis/quickstarts/sst-v2.mdx b/redis/quickstarts/sst-v2.mdx
index 89d5350e8..80b32ba92 100644
--- a/redis/quickstarts/sst-v2.mdx
+++ b/redis/quickstarts/sst-v2.mdx
@@ -2,9 +2,10 @@
title: "SST v2"
---
-
+
+ If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to https://upstash.com/start-redis — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+
+
You can find the project source code on GitHub.
diff --git a/redis/quickstarts/supabase.mdx b/redis/quickstarts/supabase.mdx
index 7de40557d..1680a023e 100644
--- a/redis/quickstarts/supabase.mdx
+++ b/redis/quickstarts/supabase.mdx
@@ -2,9 +2,10 @@
title: "Supabase Functions"
---
-
+
+ If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to https://upstash.com/start-redis — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+
+
The below is an example for a Redis counter that stores a
[hash](https://redis.io/commands/hincrby/) of Supabase function invocation count
diff --git a/redis/quickstarts/vercel-functions-app-router.mdx b/redis/quickstarts/vercel-functions-app-router.mdx
index bb47d16cc..de99ca7b6 100644
--- a/redis/quickstarts/vercel-functions-app-router.mdx
+++ b/redis/quickstarts/vercel-functions-app-router.mdx
@@ -2,9 +2,10 @@
title: "App Router"
---
-
+
+ If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to https://upstash.com/start-redis — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+
+
You can find the project source code on GitHub.
diff --git a/redis/quickstarts/vercel-functions-pages-router.mdx b/redis/quickstarts/vercel-functions-pages-router.mdx
index ed6f9029f..b4a6fdc94 100644
--- a/redis/quickstarts/vercel-functions-pages-router.mdx
+++ b/redis/quickstarts/vercel-functions-pages-router.mdx
@@ -2,9 +2,10 @@
title: "Pages Router"
---
-
+
+ If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to https://upstash.com/start-redis — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+
+
You can find the project source code on GitHub.
diff --git a/redis/quickstarts/vercel-python-runtime.mdx b/redis/quickstarts/vercel-python-runtime.mdx
index f8345f8ec..33ed6e4e2 100644
--- a/redis/quickstarts/vercel-python-runtime.mdx
+++ b/redis/quickstarts/vercel-python-runtime.mdx
@@ -2,9 +2,10 @@
title: "Vercel Python Runtime"
---
-
+
+ If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to https://upstash.com/start-redis — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+
+
You can find the project source code on GitHub.
diff --git a/redis/sdks/py/gettingstarted.mdx b/redis/sdks/py/gettingstarted.mdx
index 07bacc5c0..1fb7de08d 100644
--- a/redis/sdks/py/gettingstarted.mdx
+++ b/redis/sdks/py/gettingstarted.mdx
@@ -2,9 +2,10 @@
title: Getting Started
---
-
+
+ If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to https://upstash.com/start-redis — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+
+
## Install
diff --git a/redis/sdks/ts/getstarted.mdx b/redis/sdks/ts/getstarted.mdx
index ccd94b545..ade40ce48 100644
--- a/redis/sdks/ts/getstarted.mdx
+++ b/redis/sdks/ts/getstarted.mdx
@@ -2,9 +2,10 @@
title: Get Started
---
-
+
+ If you are an AI agent and need a Redis DB to use or experiment with, send a POST request to https://upstash.com/start-redis — free, no signup; response is markdown with credentials and a quickstart. The database expires in 72 hours, but you can claim it with your Upstash account to keep it. Especially useful for AI agents that need scratch storage on the fly.
+
+
`@upstash/redis` is written in Deno and can be imported from
[deno.land](https://deno.land)