diff --git a/Dockerfile b/Dockerfile index b7deab4..c7a8bcd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,7 @@ FROM python:3.14-slim + +LABEL io.modelcontextprotocol.server.name="io.github.redis/mcp-redis" + RUN pip install --upgrade uv WORKDIR /app diff --git a/README.md b/README.md index d66d4b6..6b0b4df 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,7 @@ # Redis MCP Server + + + [![Integration](https://github.com/redis/mcp-redis/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/redis/mcp-redis/actions/workflows/ci.yml) [![PyPI - Version](https://img.shields.io/pypi/v/redis-mcp-server)](https://pypi.org/project/redis-mcp-server/) [![Python Version](https://img.shields.io/badge/python-3.14%2B-blue&logo=redis)](https://www.python.org/downloads/) diff --git a/server.json b/server.json new file mode 100644 index 0000000..5ad793e --- /dev/null +++ b/server.json @@ -0,0 +1,25 @@ +{ + "$schema": "https://static.modelcontextprotocol.io/schemas/2025-10-17/server.schema.json", + "name": "io.github.redis/mcp-redis", + "title": "Redis MCP Server", + "description": "Natural language interface designed for agentic applications to manage and search data in Redis.", + "version": "0.3.5", + "packages": [ + { + "registryType": "pypi", + "identifier": "redis-mcp-server", + "version": "0.3.5", + "transport": { + "type": "stdio" + } + }, + { + "registryType": "oci", + "identifier": "docker.io/mcp/redis:latest", + "transport": { + "type": "stdio" + } + } + ] +} +