klim agents list
klim agents list enumerates every agent entity klim has detected on
this host: marketplaces, plugins, skills, MCPs, and sessions. Filter
by type, provider, or installation state to narrow the result.
klim agents list [flags]| Flag | Description |
|---|---|
--type | Filter by entity type: marketplace, plugin, skill, mcp, session. |
--provider | Limit to one provider: claude-code, copilot-cli, mcp-registry. |
--installed | Show only installed entities (plugins / MCPs). |
--available | Show only available (non-installed) catalog entries. |
--search | Fuzzy filter — same as klim agents search <query> but applied to the list output. |
--refresh | Ignore the agents scan cache and rescan from disk. |
--output | text (default), json, or yaml. |
Examples
Section titled “Examples”# Everything detected, grouped by providerklim agents list
# Only Claude Code's MCPsklim agents list --provider claude-code --type mcp
# Installed plugins onlyklim agents list --type plugin --installed
# Pipe to jq for scriptingklim agents list --output json | jq '.entities[] | select(.installed==true) | .name'
# Snapshot to YAMLklim agents list --output yaml > agents-state.yamlOutput
Section titled “Output”Text output groups entities by provider, with one column per type and a count next to each header. JSON and YAML emit a stable schema:
generated_at: 2026-05-16T19:15:00Zproviders: - id: claude-code detected: true version: 0.5.3 counts: marketplaces: 1 plugins: 4 skills: 7 mcps: 3 sessions: 12entities: - id: claude-code:plugin:auth-helper type: plugin provider: claude-code name: auth-helper installed: true version: 1.2.0 description: OAuth/JWT helpers for agent sessions # …See the agents overview for what each entity type means and where klim reads it from on disk.