Install
$ agentstack add mcp-azuremanagedredis-mcp-amr Open-source listing, not yet scanned by AgentStack. Follow the source repository for install instructions.
Security review
⚠ Flagged1 finding(s); flagged for manual review. · v0.1.0 How review works →
- • Prompt-injection patterns
- • Secret / credential exfiltration
- • Dangerous shell & filesystem operations
- • Untrusted network calls
- • Known-malicious package signatures
- high Pipes remote content directly into a shell (remote code execution).
What it can access
- ● Network access Used
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Overview
Azure Managed Redis MCP Server provides a natural language interface for agentic apps to interact with Azure Managed Redis—a high-speed, in-memory datastore that is ideal for low-latency use cases like agent memory, vector data store and semantic caching.
This repo is a fork of mcp-redis with following updates:
- Support SSE so that this MCP server can be hosted remotely
- Support server side authentication through API Keys or OAuth
- Uses Entra Id Authentication by default to connect to Azure Managed Redis instance
- Removed the use of 'anyOf' keyword which cannot be parsed by some older MCP clients
- Allows bringing your own vectorizer for vector search use cases with the "knowledge store" tools
- Azd support to host MCP server remotely on Azure Container Apps
Using this MCP Server, you can ask questions like:
- "Store the entire conversation in a stream"
- "Cache this item"
- "Store the session with an expiration time"
- "Store this json data as a vector"
- "Index and search this vector"
Tools
This MCP Server provides tools to manage the data stored in Redis.
stringtools to set, get strings with expiration. Useful for storing simple configuration values, session data, or caching responses.hashtools to store field-value pairs within a single key. The hash can store vector embeddings. Useful for representing objects with multiple attributes, user profiles, or product information where fields can be accessed individually.listtools with common operations to append and pop items. Useful for queues, message brokers, or maintaining a list of most recent actions.settools to add, remove and list set members. Useful for tracking unique values like user IDs or tags, and for performing set operations like intersection.sorted settools to manage data for e.g. leaderboards, priority queues, or time-based analytics with score-based ordering.pub/subfunctionality to publish messages to channels and subscribe to receive them. Useful for real-time notifications, chat applications, or distributing updates to multiple clients.streamstools to add, read, and delete from data streams. Useful for event sourcing, activity feeds, or sensor data logging with consumer groups support.JSONtools to store, retrieve, and manipulate JSON documents in Redis. Useful for complex nested data structures, document databases, or configuration management with path-based access.knowledge storetools to store and retrieve data using semantic similarity search with vector embeddings powered by Azure OpenAI. Useful for building RAG systems, semantic caching, question-answering systems, or any application that needs to find relevant information based on meaning rather than exact matches.
Additional tools.
query enginetools to manage vector indexes and perform vector searchserver managementtool to retrieve information about the database
Installation
Run the Redis MCP Server locally
Host remote MCP Server on Azure
Deploy to Azure with Azure Developer CLI
The fastest way to deploy the MCP Server to Azure is using Azure Developer CLI (azd):
# Install azd (if not already installed)
curl -fsSL https://aka.ms/install-azd.sh | bash
# Login and deploy
azd auth login
azd up
This single command will:
- ✅ Prompt for environment name, subscription, and location
- ✅ Deploy Azure Managed Redis with RediSearch and RedisJSON
- ✅ Deploy Container Apps with the MCP server
- ✅ Build and push the container image
- ✅ Configure authentication (NO-AUTH, API-KEY, or OAUTH)
See detailed instructions here
Deploy to Azure with Shell Script
Alternatively, you can use the interactive deployment script:
./infra/deploy-redis-mcp.sh
This script provides full control over the deployment configuration including resource group, location, Redis SKU, and authentication method.
For detailed deployment options, see [docs/AZUREDEPLOYMENT.md](./docs/AZUREDEPLOYMENT.md).
Testing
Configure a client list VSCode GitHub Copilot to create MCP client for testing. Edit the mcp.json and add:
{
"servers": {
"redis": {
"type": "http",
"url": "https:///message",
"headers": {
"X-API-Key": ""
}
}
}
}
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: AzureManagedRedis
- Source: AzureManagedRedis/mcp-amr
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.