We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/peidaqi/yfinance-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•245 B
# Use official Python 3 image as base
FROM python:3
# Set working directory inside the container
WORKDIR /app
# Copy the current directory contents into the container
COPY . /app
RUN pip install .
CMD ["python", "-m", "yfinance_mcp_server"]