Skip to content

Commit 550fd69

Browse files
authored
Merge pull request #84 from redis/add-mcp-registry-metadata
feat: add MCP registry metadata for server publication
2 parents 19994a0 + 3b429c9 commit 550fd69

File tree

3 files changed

+31
-0
lines changed

3 files changed

+31
-0
lines changed

Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
FROM python:3.14-slim
2+
3+
LABEL io.modelcontextprotocol.server.name="io.github.redis/mcp-redis"
4+
25
RUN pip install --upgrade uv
36

47
WORKDIR /app

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# Redis MCP Server
2+
3+
<!-- mcp-name: io.github.redis/mcp-redis -->
4+
25
[![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)
36
[![PyPI - Version](https://img.shields.io/pypi/v/redis-mcp-server)](https://pypi.org/project/redis-mcp-server/)
47
[![Python Version](https://img.shields.io/badge/python-3.14%2B-blue&logo=redis)](https://www.python.org/downloads/)

server.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-10-17/server.schema.json",
3+
"name": "io.github.redis/mcp-redis",
4+
"title": "Redis MCP Server",
5+
"description": "Natural language interface designed for agentic applications to manage and search data in Redis.",
6+
"version": "0.3.5",
7+
"packages": [
8+
{
9+
"registryType": "pypi",
10+
"identifier": "redis-mcp-server",
11+
"version": "0.3.5",
12+
"transport": {
13+
"type": "stdio"
14+
}
15+
},
16+
{
17+
"registryType": "oci",
18+
"identifier": "docker.io/mcp/redis:latest",
19+
"transport": {
20+
"type": "stdio"
21+
}
22+
}
23+
]
24+
}
25+

0 commit comments

Comments
 (0)