Skip to content

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.

Terminal window
klim agents list [flags]
FlagDescription
--typeFilter by entity type: marketplace, plugin, skill, mcp, session.
--providerLimit to one provider: claude-code, copilot-cli, mcp-registry.
--installedShow only installed entities (plugins / MCPs).
--availableShow only available (non-installed) catalog entries.
--searchFuzzy filter — same as klim agents search <query> but applied to the list output.
--refreshIgnore the agents scan cache and rescan from disk.
--outputtext (default), json, or yaml.
Terminal window
# Everything detected, grouped by provider
klim agents list
# Only Claude Code's MCPs
klim agents list --provider claude-code --type mcp
# Installed plugins only
klim agents list --type plugin --installed
# Pipe to jq for scripting
klim agents list --output json | jq '.entities[] | select(.installed==true) | .name'
# Snapshot to YAML
klim agents list --output yaml > agents-state.yaml

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:00Z
providers:
- id: claude-code
detected: true
version: 0.5.3
counts:
marketplaces: 1
plugins: 4
skills: 7
mcps: 3
sessions: 12
entities:
- 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.