get_config
Check platform configuration and credential readiness at session start to identify missing credentials and prompt the user to provide them.
Instructions
Returns which platforms are configured and ready to use. Call this at the very start of every session BEFORE asking the user for anything.
Credentials come from one of two places (checked in this order): 1. Session memory — set via configure_credentials (used in web Claude Code) 2. .env file on the server (used in CLI / personal deployment)
If a platform shows configured=false AND the server has no .env: → Call configure_credentials first, then re-call get_config. If a platform shows configured=false AND a .env exists: → The .env is missing that platform's values. Tell the user which vars are needed.
Never ask the user for credentials unless get_config reports a platform is not configured.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||