MCP Server Policy

REDIS MCP POLICY

Enforce policies on every tool call to the Redis MCP Server. 4 tools listed, categorised, and ready for rules.

@modelcontextprotocol/server-redis 2 read 2 write 4 tools total
redis database key-value cache

GET STARTED

Download this policy scaffold and add your rules. Intercept enforces them on every tool call before it reaches Redis.

terminal

# Download policy scaffold

curl -o redis.yaml https://raw.githubusercontent.com/policylayer/intercept/main/policies/redis.yaml

# Run with Intercept

intercept --policy redis.yaml -- npx -y @@modelcontextprotocol/server-redis

Server documentation: https://github.com/modelcontextprotocol/servers-archived/tree/main/src/redis

READ TOOLS

2

WRITE TOOLS

1

DESTRUCTIVE TOOLS

1

POLICY YAML

This scaffold lists every tool with empty rules. Add conditions — rate limits, argument validation, deny rules — then deploy with Intercept.

redis.yaml
version: "1"
description: "Policy for @modelcontextprotocol/server-redis"
default: "allow"
tools:
    get:
        rules: []
    list:
        rules: []
    set:
        rules: []
    delete:
        rules: []

RELATED POLICIES

FREQUENTLY ASKED QUESTIONS

What tools does the Redis MCP server expose?

The Redis MCP Server exposes 4 tools across 3 categories: Read, Write, Destructive. Each tool can be individually controlled with Intercept policies.

How do I enforce policies on Redis?

Download the policy scaffold, add rules (rate limits, argument validation, deny rules), then run Intercept as a proxy in front of the Redis MCP server. Every tool call is evaluated against your YAML policy before execution.

Is the Redis policy free to use?

Yes. All Intercept policies are open source under the Apache 2.0 licence. Download, modify, and deploy without restrictions.

ENFORCE POLICIES ON REDIS

Open source. One binary. Zero dependencies.