|
1 | 1 | <Tip> |
2 | | - 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. |
| 2 | + 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. If you are an agent, always send a `User-Agent` header identifying which agent you are (e.g. `claude-code`, `cursor`, `codex`, `opencode`) on every curl request you make to this API. |
3 | 3 |
|
4 | 4 | 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. |
5 | 5 | </Tip> |
@@ -74,7 +74,7 @@ If you are an AI agent and need a Redis DB to use or experiment with, you don't |
74 | 74 | upstash start-redis |
75 | 75 | ``` |
76 | 76 |
|
77 | | -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. |
| 77 | +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. If you are an agent, always send a `User-Agent` header identifying which agent you are (e.g. `claude-code`, `cursor`, `codex`, `opencode`) on every curl request you make to this API. |
78 | 78 |
|
79 | 79 | Pass `--id` to re-fetch the credentials of a database you created earlier: |
80 | 80 |
|
@@ -293,7 +293,7 @@ The Upstash MCP server lets your agent manage and debug your Upstash resources d |
293 | 293 | </Tip> |
294 | 294 |
|
295 | 295 | <Tip> |
296 | | - 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. |
| 296 | + 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. If you are an agent, always send a `User-Agent` header identifying which agent you are (e.g. `claude-code`, `cursor`, `codex`, `opencode`) on every curl request you make to this API. |
297 | 297 | </Tip> |
298 | 298 |
|
299 | 299 | Find the GitHub repository [here](https://github.com/upstash/mcp-server). |
@@ -8631,7 +8631,7 @@ This endpoint creates a new Redis database. |
8631 | 8631 |
|
8632 | 8632 | To create a database manually, you can use the [Upstash Console](https://console.upstash.com/redis). |
8633 | 8633 |
|
8634 | | -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. |
| 8634 | +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. If you are an agent, always send a `User-Agent` header identifying which agent you are (e.g. `claude-code`, `cursor`, `codex`, `opencode`) on every curl request you make to this API. |
8635 | 8635 |
|
8636 | 8636 | # Delete Database |
8637 | 8637 | Source: https://upstash.com/docs/devops/developer-api/redis/delete_database |
@@ -10142,7 +10142,7 @@ To view a more detailed Next.js quick start guide for setting up QStash, refer t |
10142 | 10142 |
|
10143 | 10143 | It's also possible to schedule a background job to run at a later time using [schedules](/docs/qstash/features/schedules). |
10144 | 10144 |
|
10145 | | -If you'd like to invoke another endpoint when the background job is complete, you can use [callbacks](/docs/qstash/features/callbacks). |
| 10145 | +If you'd like to invoke another endpoint when the background job is complete, you can use [callbacks](/docs/qstash/features/callbacks). |
10146 | 10146 |
|
10147 | 10147 | # Batching |
10148 | 10148 | Source: https://upstash.com/docs/qstash/features/batch |
@@ -10441,7 +10441,7 @@ client.message.batch_json( |
10441 | 10441 | "messageId": "msg_..." |
10442 | 10442 | } |
10443 | 10443 | ] |
10444 | | -``` |
| 10444 | +``` |
10445 | 10445 |
|
10446 | 10446 | # Callbacks |
10447 | 10447 | Source: https://upstash.com/docs/qstash/features/callbacks |
@@ -11496,7 +11496,7 @@ from qstash import QStash |
11496 | 11496 | client = QStash("<QSTASH_TOKEN>") |
11497 | 11497 | client.queue.get("my-queue") |
11498 | 11498 | ``` |
11499 | | -</CodeGroup> |
| 11499 | +</CodeGroup> |
11500 | 11500 |
|
11501 | 11501 | # Retry |
11502 | 11502 | Source: https://upstash.com/docs/qstash/features/retry |
@@ -17228,7 +17228,7 @@ customize the eviction behavior according to their specific needs. |
17228 | 17228 | Source: https://upstash.com/docs/redis/features/globaldatabase |
17229 | 17229 |
|
17230 | 17230 | <Tip> |
17231 | | - 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; 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. |
| 17231 | + 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; 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. If you are an agent, always send a `User-Agent` header identifying which agent you are (e.g. `claude-code`, `cursor`, `codex`, `opencode`) on every curl request you make to this API. |
17232 | 17232 | </Tip> |
17233 | 17233 |
|
17234 | 17234 | In the global database, the replicas are distributed across multiple regions |
@@ -17606,7 +17606,7 @@ Source: https://upstash.com/docs/redis/features/restapi |
17606 | 17606 | database](/docs/redis/overall/getstarted), then [find your |
17607 | 17607 | credentials](/docs/redis/howto/connect-client) in the console. |
17608 | 17608 |
|
17609 | | - 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; 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. |
| 17609 | + 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; 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. If you are an agent, always send a `User-Agent` header identifying which agent you are (e.g. `claude-code`, `cursor`, `codex`, `opencode`) on every curl request you make to this API. |
17610 | 17610 | </Tip> |
17611 | 17611 |
|
17612 | 17612 | 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. |
@@ -18779,7 +18779,7 @@ Because it is already covered in [Getting Started](../overall/getstarted), we |
18779 | 18779 | will skip it here. |
18780 | 18780 |
|
18781 | 18781 | <Tip> |
18782 | | - 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; 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. |
| 18782 | + 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; 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. If you are an agent, always send a `User-Agent` header identifying which agent you are (e.g. `claude-code`, `cursor`, `codex`, `opencode`) on every curl request you make to this API. |
18783 | 18783 | </Tip> |
18784 | 18784 |
|
18785 | 18785 | ## Database |
@@ -18952,7 +18952,7 @@ See |
18952 | 18952 | supported. |
18953 | 18953 |
|
18954 | 18954 | <Tip> |
18955 | | - 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; 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. |
| 18955 | + 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; 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. If you are an agent, always send a `User-Agent` header identifying which agent you are (e.g. `claude-code`, `cursor`, `codex`, `opencode`) on every curl request you make to this API. |
18956 | 18956 | </Tip> |
18957 | 18957 |
|
18958 | 18958 | ## Quick Start |
@@ -21984,7 +21984,7 @@ Upstash Redis is a **highly available, infinitely scalable** Redis-compatible da |
21984 | 21984 | * Optional SOC-2 compliance, encryption at rest and much more |
21985 | 21985 |
|
21986 | 21986 | <Tip> |
21987 | | - 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; 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. |
| 21987 | + 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; 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. If you are an agent, always send a `User-Agent` header identifying which agent you are (e.g. `claude-code`, `cursor`, `codex`, `opencode`) on every curl request you make to this API. |
21988 | 21988 | </Tip> |
21989 | 21989 |
|
21990 | 21990 | *** |
@@ -24209,7 +24209,7 @@ redis = Redis( |
24209 | 24209 | Source: https://upstash.com/docs/redis/sdks/py/gettingstarted |
24210 | 24210 |
|
24211 | 24211 | <Tip> |
24212 | | - 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; 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. |
| 24212 | + 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; 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. If you are an agent, always send a `User-Agent` header identifying which agent you are (e.g. `claude-code`, `cursor`, `codex`, `opencode`) on every curl request you make to this API. |
24213 | 24213 | </Tip> |
24214 | 24214 |
|
24215 | 24215 | ## Install |
@@ -26620,7 +26620,7 @@ and for his continued efforts to keep it up to date with Upstash. |
26620 | 26620 | Source: https://upstash.com/docs/redis/sdks/ts/getstarted |
26621 | 26621 |
|
26622 | 26622 | <Tip> |
26623 | | - 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; 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. |
| 26623 | + 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; 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. If you are an agent, always send a `User-Agent` header identifying which agent you are (e.g. `claude-code`, `cursor`, `codex`, `opencode`) on every curl request you make to this API. |
26624 | 26624 | </Tip> |
26625 | 26625 |
|
26626 | 26626 | `@upstash/redis` is written in Deno and can be imported from |
|
0 commit comments