We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/johnie/traktamente-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•656 B
# Dockerfile for stdio transport (for Docker-based Claude Desktop integration)
FROM oven/bun:1-alpine
LABEL org.opencontainers.image.title="Traktamente MCP Server (stdio)" \
org.opencontainers.image.description="MCP server for Swedish traktamente rates via stdio transport" \
org.opencontainers.image.source="https://github.com/johnie/traktamente-mcp"
WORKDIR /app
# Copy package files
COPY package.json bun.lock* ./
# Install production dependencies
RUN bun install --production --frozen-lockfile
# Copy source code
COPY src ./src
COPY tsconfig.json ./
# Set environment
ENV TRANSPORT=stdio
# Run the server
CMD ["bun", "src/index.ts"]