Skip to main content
Glama

Backstage MCP Server

by PawelWaj
docker-compose.yml1.32 kB
services: backstage-mcp: build: context: . dockerfile: Dockerfile image: backstage-mcp-server:latest container_name: backstage-mcp-server restart: unless-stopped stdin_open: true tty: true # Environment variables (if needed in future) environment: - NODE_ENV=production - TZ=UTC # Volume for persistent data (if needed) volumes: - mcp-data:/app/data # Network configuration networks: - mcp-network # Resource limits deploy: resources: limits: memory: 256M cpus: '0.5' reservations: memory: 128M cpus: '0.25' # Health check healthcheck: test: ["CMD", "node", "-e", "console.log('MCP Server is healthy')"] interval: 30s timeout: 10s retries: 3 start_period: 40s # Optional: HTTP proxy for web access (future enhancement) mcp-proxy: image: nginx:alpine container_name: backstage-mcp-proxy restart: unless-stopped ports: - "8080:80" volumes: - ./nginx.conf:/etc/nginx/nginx.conf:ro networks: - mcp-network depends_on: - backstage-mcp profiles: - web volumes: mcp-data: driver: local networks: mcp-network: driver: bridge

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/PawelWaj/MCP'

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