Skip to main content
Glama

Kanta MCP Server

by Kanta-Inc
Dockerfile805 B
# Generated by https://smithery.ai. See: https://smithery.ai/docs/build/project-config # Multi-stage build for Kanta MCP Server # Builder stage: install deps and compile TypeScript FROM node:lts-alpine AS builder WORKDIR /app # Copy package files and tsconfig COPY package.json package-lock.json tsconfig.json ./ # Copy source code COPY src ./src COPY api-docs.json . # Install dependencies and build RUN npm install && npm run build # Production stage: only runtime deps and compiled code FROM node:lts-alpine AS runtime WORKDIR /app # Copy package files COPY package.json package-lock.json ./ # Install only production dependencies RUN npm install --production # Copy compiled output COPY --from=builder /app/dist ./dist # Default command to run the server ENTRYPOINT ["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/Kanta-Inc/kanta-mcp-server'

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