We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/TheLunarCompany/lunar'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
version: "3.8"
services:
oauth-mock:
image: node:22-alpine
working_dir: /app
volumes:
# Mount the built OAuth server from testkit-mcp-server
- ../../../testkit-mcp-server/dist:/app
# Mount node_modules for dependencies
- ../../../testkit-mcp-server/node_modules:/app/node_modules
command: node oauth-mock.js
ports:
- "9001:9001"
healthcheck:
test: ["CMD", "wget", "-q", "--spider", "http://localhost:9001/status"]
interval: 1s
timeout: 5s
retries: 10
start_period: 2s