manage_api_keys_list
List and filter API keys for MCP Hub services, showing metadata without exposing actual key values. Use project_id parameter to view global keys, project-specific keys, or all keys combined.
Instructions
List API keys with optional filtering.
Requires: Global API key (Master API Key or global admin key)
Filtering Behavior:
project_id=null(default): Returns ALL keys (global + project-specific)project_id="*": Returns ONLY global keysproject_id="wordpress_site1": Returns keys for that project + global keys
Args: project_id: Optional filter by project ID (default: null = all keys) include_revoked: Include revoked keys (default: False)
Returns: dict: List of API keys with metadata (without actual key values)
Examples: # List all keys manage_api_keys_list()
# List only global keys
manage_api_keys_list(project_id="*")
# List keys for specific project
manage_api_keys_list(project_id="wordpress_site1")Note: See docs/API_KEYS_USAGE.md for detailed documentation
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | No | ||
| include_revoked | No |