We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bkuri/jesse-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•448 B
# Dockerfile for jesse-mcp in MetaMCP
FROM metamcp:latest
# Copy the jesse-mcp source code
COPY . /app/jesse-mcp
WORKDIR /app/jesse-mcp
# Install runtime dependencies
RUN pip install -q -r requirements.txt
# Install the package in development mode (for easy updates)
RUN pip install -e .
# Verify installation
RUN jesse-mcp --version
# The entry point is configured via setup.py
# MetaMCP will call: jesse-mcp (via console_scripts entry point)