We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/anpigon/mcp-server-obsidian-omnisearch'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile
FROM python:3.10-slim
# set working directory
WORKDIR /app
# copy the project files
COPY . /app
# install build dependencies
RUN pip install --upgrade pip && \
pip install hatchling && \
pip install .
# Expose port if necessary: MCP runs over stdio so use logs
# set default command, note: vault path must be provided at runtime
CMD ["python", "-m", "mcp_server_obsidian_omnisearch", "/path/to/your/obsidian/vault"]