Security schemes parsed into credential management tools (prefix _auth_).
| Type | Features |
| —- | ——– |
| apiKey (header/query/cookie) | Value storage & injection |
| http: basic | Username/password base64 header |
| http: bearer | Static bearer token storage |
| oauth2 | Client credentials, device code, auth code (PKCE), refresh |
Per scheme: <id>_auth_<scheme>_set, _clear. Listing: <id>_auth_list_credentials (masked output).
All sensitive values masked except limited prefix/suffix for operator recognition; basic auth masks password only.
See guides: Adding Credentials, OAuth Flows.
Next: Rate Limiting.