FROM rust:trixie AS build
RUN apt-get update && apt-get -y install libssl-dev curl build-essential
COPY . /app
WORKDIR /app
RUN --mount=type=cache,target=/root/.cargo cargo build --release
FROM debian:trixie AS runtime
# Install libssl3 for libssl.so.3 runtime dependency and CA certificates to ddl ONNX model files
RUN apt-get update && apt-get -y install libssl3 ca-certificates
COPY --from=build /app/target/release/sparql-mcp /
EXPOSE 8000
CMD ["./sparql-mcp"]
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sib-swiss/sparql-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server