Redis Integration
Connect your AI to Redis databases for efficient key-value storage and retrieval.
Overview
The Redis integration enables your AI to interact directly with your Redis databases, allowing you to store and retrieve data, manage key expiration, and monitor connection status—all without leaving your AI interface.
Before using Redis tools, you need to connect your database through the Skeet dashboard.
Authentication
To use Redis with Skeet, you first need to authenticate:
- Connect your Redis database in the Skeet dashboard
- Ensure your AI is connected to Skeet with your MCP key
- Verify your connection:
List my skeet integrations
Managing Data
Store and retrieve data using Redis key-value operations. You can set values with optional expiration times and retrieve or delete them as needed.
Set a Redis value: key=user:123, value={"name": "John"}, expireSeconds=3600
The AI will use the appropriate Redis tools with these parameters:
{
"key": "Key to store the value under",
"value": "Value to store",
"expireSeconds": "Optional expiration time in seconds"
}
Listing Keys
List keys in your Redis database using pattern matching.
List Redis keys matching pattern: user:*
The AI will use the redis_list
tool with the following parameters:
{
"pattern": "Pattern to match keys (e.g., user:*)"
}
Use descriptive key patterns to effectively organize and retrieve your data.
Checking Connection Status
Monitor your Redis connection to ensure everything is working properly.
Check the Redis connection status
The AI will use the redis_get_connection_status
tool, which doesn't require any parameters.
What's next?
Now that you've connected Redis, explore other integrations to make your AI even more powerful.
Integrations
Sequential Thinking
Enable dynamic and reflective problem-solving through structured thinking steps.