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
# Testing Dockerfile for MCP Prompts
FROM node:20-alpine AS test
WORKDIR /app
# Install dependencies
RUN apk add --no-cache curl wget bash
# Create necessary directories
RUN mkdir -p /app/data/prompts /app/data/backups /app/test-results && \
chmod -R 777 /app/data /app/test-results
# Copy source code and dependencies
COPY package*.json ./
COPY tsconfig.json ./
COPY src/ ./src/
COPY tests/ ./tests/
# Install dependencies
RUN npm ci
# Default environment variables
ENV NODE_ENV=test \
STORAGE_TYPE=file \
PROMPTS_DIR=/app/data/prompts \
TEST_MODE=true
# Default command
CMD ["npm", "test"]