ワンクリックで
credentials
Access team credentials stored in GitLab CI/CD variables - servers, databases, APIs
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Access team credentials stored in GitLab CI/CD variables - servers, databases, APIs
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Load CI/CD pipeline configuration and deployment information when working with automation or deployments
Load database relationships, shared resources, and schema information when working with data models or database configuration
Load development environment information including folder structure, OrbStack setup, and system configuration
Load port mappings for all projects when working with networking, docker-compose, or service configuration
Load GitHub/GitLab repository information when working with git, CI/CD, or repository management
Load server information, infrastructure details, and access patterns when working with deployment or server configuration
| name | credentials |
| description | Access team credentials stored in GitLab CI/CD variables - servers, databases, APIs |
| user-invocable | true |
All team credentials are stored in GitLab CI/CD Variables.
Access them using GitLab CLI - authenticates with your Microsoft SSO.
# Install GitLab CLI
brew install glab
# Authenticate (opens browser for Microsoft SSO)
glab auth login
# List all available credentials
glab variable list --group flow-master
# Get specific credential
glab variable get CREDENTIAL_NAME --group flow-master
# Copy to clipboard (macOS)
glab variable get CREDENTIAL_NAME --group flow-master | pbcopy
# Copy to clipboard (Linux)
glab variable get CREDENTIAL_NAME --group flow-master | xclip -selection clipboard
When team asks "what's the password for...":
# Database credentials
glab variable get PROD_DB_PASSWORD --group flow-master
glab variable get STAGING_DB_PASSWORD --group flow-master
# Server SSH keys
glab variable get SSH_PRIVATE_KEY --group flow-master
glab variable get BASTION_PASSWORD --group flow-master
# API tokens
glab variable get EXTERNAL_API_TOKEN --group flow-master
glab variable get SLACK_WEBHOOK_URL --group flow-master
# Hetzner Cloud (firewall, servers, DNS)
glab variable get HETZNER_API_TOKEN --group flow-master
HETZNER_API_TOKEN (masked, protected)flow-masterhttps://api.hetzner.cloud/v1/Authorization: Bearer $HETZNER_API_TOKENget_credential('HETZNER_API_TOKEN')get_context_serversGRAFANA_ADMIN_PASSWORD (masked, protected)flow-masterGRAFANA_URL (not masked, not protected)adminget_credential('GRAFANA_ADMIN_PASSWORD')Default credentials (NOT in GitLab - stored in database only):
| Role | Notes | |
|---|---|---|
admin@flowmaster.ai | Administrator | Created 2026-02-11, matches frontend dev login button |
admin@flowmaster.io | Tenant Admin | Seeded from migration 012 |
superadmin@flowmaster.io | Platform Superuser | Seeded from migration 012 |
eng.admin@flowmaster.io | Org Admin | Seeded from migration 012 |
Passwords: Use commander-mcp: get_credential('FM_DEV_ADMIN_PASSWORD') or get_credential('FM_DEV_SEED_PASSWORD')
Database details:
flowmaster_dev_core (in databases-test namespace)auth_service"user" (quoted - reserved keyword)Login endpoint: dev-01 at /api/v1/auth/login — query commander-mcp for server IP
In GitLab UI:
Group > Settings > CI/CD > VariablesProject > Settings > CI/CD > VariablesBest practice: Use group-level for shared credentials (databases, servers)
# Add to group (requires Maintainer role)
glab variable set NEW_CREDENTIAL "value" --group flow-master
# Add to specific project
glab variable set NEW_CREDENTIAL "value" --repo your-org/project
"Variable not found":
"Not authenticated":
glab auth status # Check auth status
glab auth login # Re-authenticate
List what you can access:
glab variable list --group flow-master | grep KEY
All credentials are available via commander-mcp: list_credentials, get_credential("name")