Skip to content
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion content/ai-agent-resources.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,15 +93,27 @@ API references are available for the following client libraries:
- [go-redis](https://pkg.go.dev/github.com/redis/go-redis/v9)
- [redis-rs](https://docs.rs/redis/latest/redis/)


## Data type comparisons

See [Compare data types]({{< relref "/develop/data-types/compare-data-types" >}}) for advice
See [Compare data types]({{< relref "/develop/data-types/compare-data-types" >}}) for advice
on which of the general-purpose data types is best for common tasks.

## Redis patterns for coding agents

Salvatore Sanfilippo (also known as *antirez*, the creator of Redis) has provided the Redis community with a resource containing very useful Redis-oriented design patterns. See [this page](https://redis.antirez.com/) for more information.

## Agent skills repository

The [redis/agent-skills](https://github.com/redis/agent-skills) repository provides reusable skills and tools for AI agents working with Redis. This repository contains:

- Pre-built MCP (Model Context Protocol) tools for Redis operations
- Common agent workflows and patterns as executable code
- Integration examples for popular agent frameworks
- Ready-to-use skills that agents can invoke directly

These skills enable AI coding assistants to interact with Redis more effectively by providing structured, tested implementations of common operations.
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've had a look and I don't think there is any MCP stuff in the agent skills repo. There is an MCP server at https://github.com/redis/mcp-redis (and we've also got docs for this at https://redis.io/docs/latest/integrate/redis-mcp/).

Suggested change
- Pre-built MCP (Model Context Protocol) tools for Redis operations
- Common agent workflows and patterns as executable code
- Integration examples for popular agent frameworks
- Ready-to-use skills that agents can invoke directly
These skills enable AI coding assistants to interact with Redis more effectively by providing structured, tested implementations of common operations.
- Common agent workflows and patterns as executable code
- Integration examples for popular agent frameworks
- Ready-to-use skills that agents can invoke directly
These skills enable AI coding assistants to interact with Redis more effectively by providing structured, tested implementations of common operations.
## MCP server
Redis provides an MCP server that lets you create and query data in a Redis database. See [Redis MCP]({{< relref "/integrate/redis-mcp" >}}) for documentation and see the [Redis MCP GitHub repo](https://github.com/redis/mcp-redis) for source code and development information.


## Error handling

See [Error handling]({{< relref "/develop/clients/error-handling" >}}) for a guide to handling errors in client libraries.
Loading