We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Devang0907/Solana-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•374 B
# Use Node.js LTS image
FROM node:20
# Set working directory
WORKDIR /app
# Copy package files and install dependencies
COPY package.json package-lock.json* ./
RUN npm install
# Copy the rest of the code
COPY . .
# Expose port if needed (not strictly required for stdio MCP, but for future HTTP use)
EXPOSE 3000
# Start the app
CMD ["node", "index.js"]