Development & DevOps

GitHub Integration (Advanced Setup)

bash

`# Install and configure claude mcp add github --env GITHUB_TOKEN=ghp_your_token \ -- npx @modelcontextprotocol/server-github

# Configure permissions in config [mcp.github] allowed_operations = ["read_issues", "create_pr", "update_pr"] rate_limit = 50 # requests per hour`

Capabilities:

Docker Container Management

bash

`# Setup claude mcp add docker --transport stdio \ -- docker run -i --rm -v /var/run/docker.sock:/var/run/docker.sock \ mcp-docker-server

# Usage examples# - List running containers# - View logs from specific containers # - Start/stop/restart services# - Execute commands in containers# - Monitor resource usage`

Kubernetes Cluster Integration

bash

`# Setup with kubectl access claude mcp add kubernetes --env KUBECONFIG=$HOME/.kube/config \ -- kubectl-mcp-server

# Capabilities:# - Pod logs and status# - Deployment management # - Service discovery# - ConfigMap/Secret management# - Resource usage monitoring`

Database Connections

PostgreSQL Integration

bash

`# Setup claude mcp add postgres \ --env DATABASE_URL=postgresql://user:pass@localhost:5432/dbname \ -- npx postgres-mcp-server

# Capabilities:# - Schema exploration# - Query execution# - Migration management# - Performance analysis# - Connection pooling stats`