We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bolinocroustibat/datagouv-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
services:
datagouv-mcp:
build:
context: .
dockerfile: Dockerfile
image: datagouv-mcp:latest
ports:
- "${MCP_PORT:-8000}:${MCP_PORT:-8000}"
environment:
- MCP_HOST=${MCP_HOST:-0.0.0.0}
- MCP_PORT=${MCP_PORT:-8000}
- DATAGOUV_API_ENV=${DATAGOUV_API_ENV:-prod}
- MATOMO_SITE_ID=${MATOMO_SITE_ID}
- MATOMO_AUTH_TOKEN=${MATOMO_AUTH_TOKEN}
restart: unless-stopped
healthcheck:
test: ["CMD", "python", "-c", "import os, urllib.request; port = os.getenv('MCP_PORT', '8000'); urllib.request.urlopen(f'http://localhost:{port}/health')"]
interval: 30s
timeout: 10s
retries: 3
start_period: 10s