We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/wwiens/trakt_mcpserver'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
services:
trakt_mcpserver:
build:
context: .
dockerfile: Dockerfile
container_name: trakt_mcpserver
ports:
- "${TRAKT_MCP_SERVER_LOCAL_PORT:-8080}:8080"
env_file:
- .env
environment:
- TRAKT_CLIENT_ID=${TRAKT_CLIENT_ID:-}
- TRAKT_CLIENT_SECRET=${TRAKT_CLIENT_SECRET:-}
- TRAKT_AUTH_TOKEN_PATH=/data/auth_token.json
volumes:
- trakt_auth:/data
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8080/status"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s
volumes:
trakt_auth: