get_app_config
Retrieve the runtime configuration of a BEAM application as it is actually loaded, including overrides and environment substitutions, to verify ports, feature flags, and module settings.
Instructions
Get runtime application configuration — what the BEAM actually has loaded (not what's in the config files on disk). Includes runtime.exs overrides, env var substitutions, and dynamic Application.put_env changes.
WHEN TO USE: You need to check config values (ports, feature flags, module settings) as the running app sees them. NOT FOR: System health metrics (use get_system_stats). Process-level inspection (use get_process_info/state).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| app | Yes | Application name (e.g. "merlinex", "phoenix", "beam_scope_mcp") | |
| key | No | Specific config key (optional — omit for all config) |