Skip to main content
Glama

Yuque MCP Server

by HenryHaoson
Dockerfile657 B
# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile FROM node:20-alpine # 安装 curl 用于健康检查 RUN apk --no-cache add curl # 创建应用目录 WORKDIR /usr/src/app # 复制 package.json 和 package-lock.json COPY package*.json ./ # 安装依赖 RUN npm install # 复制所有源代码 COPY . . # 构建 TypeScript RUN npm run build # 开放端口 EXPOSE 3000 # 设置环境变量 ENV NODE_ENV=production ENV PORT=3000 # 健康检查 HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \ CMD curl -f http://localhost:3000/health || exit 1 # 启动应用 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/HenryHaoson/Yuque-MCP-Server'

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