Skip to main content
Glama

Code Research MCP Server

by nahmanmate
# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile # Use a Node.js base image FROM node:20-alpine as build # Set the working directory WORKDIR /app # Copy package files and install dependencies COPY package*.json ./ RUN npm install --ignore-scripts # Copy the rest of the application files COPY . . # Build the application RUN npm run build # Use a smaller Node.js base image for the final image FROM node:20-alpine # Set the working directory WORKDIR /app # Copy the build artifacts from the previous stage COPY --from=build /app/build ./build COPY --from=build /app/package*.json ./ # Install only production dependencies RUN npm install --omit=dev # Define the command to run the MCP server ENTRYPOINT ["node", "build/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/nahmanmate/code-research-mcp-server'

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