We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/laulauland/bluesky-context-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•360 B
# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile
# Use a lightweight Linux distribution with bun
FROM jarredsumner/bun:edge as builder
# Set working directory
WORKDIR /app
# Copy all files to the container
COPY . .
# Install dependencies using bun
RUN bun install
# Run the application
CMD ["bun", "run", "bin/index.ts"]