mcp-server logo

mcp-server

by esmaelehab

This server provides a platform for managing and executing commands, likely within a containerized environment. It uses Server-Sent Events (SSE) for real-time communication.

View on GitHub

Last updated: N/A

initialize a directory

uv init sse_server

create venv and activate

uv venv
#for windows
.venv\Scripts\activate

install libraries

uv pip install -r requirements.txt

build the docker image

docker build -t terminal_sse_server .

run the docker image

docker run --rm -p 8081:8081 -v <PATH_TO_WORKSPACE_DIRECTORY_Required_FOR_COMMAND_LINE_TOOL>:/root/mcp/workspace terminal_sse_server