We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sparesparrow/mcp-prompts'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile.simple•426 B
FROM node:20-alpine
# Install the mcp-prompts package globally
RUN npm install -g @sparesparrow/mcp-prompts
# Create app user for security
RUN addgroup -g 1001 -S nodejs
RUN adduser -S mcp-prompts -u 1001
# Switch to non-root user
USER mcp-prompts
# Set environment for MCP mode
ENV MODE=mcp
ENV NODE_ENV=production
# Start the MCP server using the standalone entry point
CMD ["npx", "@sparesparrow/mcp-prompts", "start"]