We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/aaronsb/think-strategies'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•504 B
# Base image
FROM node:20-slim
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm ci
# Copy source files
COPY index.js ./
COPY sequential-thinking-tool-schema.js ./
COPY strategy-stages-mapping.json ./
# Make the index.js executable
RUN chmod +x index.js
# Create data directory with permissions that allow any user to write to it
RUN mkdir -p /app/data && chmod 777 /app/data
# Set the entrypoint
ENTRYPOINT ["node", "index.js", "--storage-path", "/app/data"]