Skip to main content
Glama
jjsteffen23

CME Prediction Markets MCP Server

by jjsteffen23
docker-compose.yml1.88 kB
version: '3.8' services: postgres: image: timescale/timescaledb:latest-pg15 environment: POSTGRES_USER: postgres POSTGRES_PASSWORD: postgres POSTGRES_DB: cme_mcp ports: - "5433:5432" volumes: - postgres_data:/var/lib/postgresql/data healthcheck: test: ["CMD-SHELL", "pg_isready -U postgres"] interval: 10s timeout: 5s retries: 5 redis: image: redis:7-alpine ports: - "6380:6379" volumes: - redis_data:/data healthcheck: test: ["CMD", "redis-cli", "ping"] interval: 10s timeout: 3s retries: 5 app: build: . command: uvicorn src.main:app --host 0.0.0.0 --port 8000 volumes: - .:/app ports: - "8000:8000" environment: - DATABASE_URL=postgresql+asyncpg://postgres:postgres@postgres:5432/cme_mcp - REDIS_URL=redis://redis:6379/0 - CELERY_BROKER_URL=redis://redis:6379/1 depends_on: postgres: condition: service_healthy redis: condition: service_healthy env_file: - .env celery_worker: build: . command: celery -A src.integrations.workflows.tasks worker --loglevel=info volumes: - .:/app environment: - DATABASE_URL=postgresql+asyncpg://postgres:postgres@postgres:5432/cme_mcp - REDIS_URL=redis://redis:6379/0 - CELERY_BROKER_URL=redis://redis:6379/1 depends_on: - postgres - redis env_file: - .env celery_beat: build: . command: celery -A src.integrations.workflows.tasks beat --loglevel=info volumes: - .:/app environment: - DATABASE_URL=postgresql+asyncpg://postgres:postgres@postgres:5432/cme_mcp - CELERY_BROKER_URL=redis://redis:6379/1 depends_on: - postgres - redis env_file: - .env volumes: postgres_data: redis_data:

Latest Blog Posts

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/jjsteffen23/dk_mcp_2'

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