Skip to main content
Glama

Server Status MCP Server

Dockerfile597 B
# Generated by https://smithery.ai. See: https://smithery.ai/docs/build/project-config # syntax=docker/dockerfile:1.4 FROM node:lts-alpine AS builder WORKDIR /app # install dependencies COPY package.json package-lock.json* pnpm-lock.yaml* ./ RUN npm install # build TypeScript COPY . . RUN npm run build # runtime image FROM node:lts-alpine AS runner WORKDIR /app # copy production dependencies COPY package.json package-lock.json* pnpm-lock.yaml* ./ RUN npm install --omit=dev # copy built files COPY --from=builder /app/dist ./dist EXPOSE 8080 # default command CMD ["node","dist/index.js"]

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/NNNNzs/server-status-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server