Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
25 changes: 25 additions & 0 deletions custom-mcp-server/resilientdb_mcp/DockerFile
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
FROM python:3.11-slim

RUN apt-get update && apt-get install -y \
git \
ansible \
systemd \
curl \
net-tools \
&& rm -rf /var/lib/apt/lists/*

COPY requirements.txt .
RUN pip install -r requirements.txt


WORKDIR /app

# Copy the server script
COPY resilientdb_mcp.py .
RUN chmod +x resilientdb_mcp.py

# Create the work directory used by the script
RUN mkdir -p /root/.resilientdb-mcp

# The command to run the MCP server over stdio
ENTRYPOINT ["python", "resilientdb_mcp.py"]
3 changes: 3 additions & 0 deletions custom-mcp-server/resilientdb_mcp/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
mcp>=1.0.0
aiohttp>=3.9.0
pyyaml>=6.0.0
Loading