We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/vexxvakan/mcp-docsrs'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile.musl-test•421 B
# Dockerfile for MUSL integration tests
FROM alpine:latest
# Install required runtime dependencies
RUN apk add --no-cache libstdc++ libgcc curl bash
# Install Bun
RUN curl -fsSL https://bun.sh/install | bash && \
mv /root/.bun/bin/bun /usr/local/bin/bun && \
chmod +x /usr/local/bin/bun
# Set working directory
WORKDIR /workspace
# The test script will be run with the workspace mounted
ENTRYPOINT ["/bin/sh"]