# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile
FROM node:lts-alpine
# Create app directory
WORKDIR /usr/src/app
# Copy package files and install dependencies
COPY package.json package-lock.json* ./
RUN npm install --ignore-scripts
# Copy the rest of the files
COPY . .
# Build the TypeScript code
RUN npm run build
# 注意:本服务器使用懒加载模式处理API密钥
# 工具列表功能不需要API密钥即可工作
# 只有在实际调用工具时才需要设置TMDB_API_KEY环境变量
#
# 在Docker运行时通过以下方式提供API密钥:
# docker run -e TMDB_API_KEY=your_api_key_here tv-recommender-mcp-server
#
# 在Smithery.ai部署时将通过环境变量提供API密钥
# Command to run the MCP server via stdio
CMD [ "node", "bin/cli.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/terryso/tv-recommender-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server