# Liongard (oci · ghcr.io/wyre-technology/liongard-mcp:v2.3.7)

MCP server for Liongard — inspectors, environments, metrics, detections, and timeline data.

- Trust score: 42/100 (low)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-22

## Components

- oci · `ghcr.io/wyre-technology/liongard-mcp:v2.3.7`: 42/100 (this document), [markdown](https://verifymcp.io/servers/wyre-technology-liongard-mcp/ghcr-io-wyre-technology-liongard-mcp-v2-3-7.md), [page](https://verifymcp.io/servers/wyre-technology-liongard-mcp/ghcr-io-wyre-technology-liongard-mcp-v2-3-7)

## Channel facts

- Registry: `oci`
- Package: `ghcr.io/wyre-technology/liongard-mcp:v2.3.7`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-22.

- **Supply Chain Security**: 0/100
  - Malware scan not yet available for this package.
  - Known CVEs could not be checked: this artifact ships no SBOM, so there is no dependency list to read. Publishing one would let us assess it.
  - Install-script risk not yet assessed.
  - Dependency health could not be checked: this artifact ships no SBOM, so there is no dependency list to read. Publishing one would let us assess it.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (Apache-2.0).
  - Actively maintained (last published 1 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 88/100
  - 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 1880 tokens (~75/item across 25 items; 24 tools + 1 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.
  - Supports UI / widget rendering.

**Unverified: 2 categories.** Categories scored 0 because we could not verify them: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

## Install

### Claude

```bash
claude mcp add wyre-technology-liongard-mcp -- docker run --rm -i ghcr.io/wyre-technology/liongard-mcp:v2.3.7
```

### Codex

```bash
codex mcp add wyre-technology-liongard-mcp -- docker run --rm -i ghcr.io/wyre-technology/liongard-mcp:v2.3.7
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "wyre-technology-liongard-mcp": {
      "type": "local",
      "command": [
        "docker",
        "run",
        "--rm",
        "-i",
        "ghcr.io/wyre-technology/liongard-mcp:v2.3.7"
      ],
      "enabled": true
    }
  }
}
```

### Hermes

```yaml
mcp_servers:
  wyre-technology-liongard-mcp:
    command: "docker"
    args: ["run", "--rm", "-i", "ghcr.io/wyre-technology/liongard-mcp:v2.3.7"]
```

### Other

```json
{
  "mcpServers": {
    "wyre-technology-liongard-mcp": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "ghcr.io/wyre-technology/liongard-mcp:v2.3.7"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-20 (score 42)

First indexed and scored.

## MCP tools (24)

### `liongard_navigate` (~206 tokens)

Discover available Liongard tools by domain. Returns tool names and descriptions for the selected domain. All tools are callable at any time — this is a help/discovery aid, not a prerequisite.

Input parameters:

- `domain` (string, required): The domain to explore: - environments: Environment/company management - list, get, create environments, count, and view related entities - agents: Agent management - list agents, bulk delete, and gen…

### `liongard_environments_list` (~71 tokens)

List environments (customers/companies) in Liongard with pagination. Returns environment details including name, status, and tier.

Input parameters:

- `page` (number): Page number (1-indexed, default: 1)
- `pageSize` (number): Number of items per page (default: 50)

### `liongard_environments_get` (~45 tokens)

Get detailed information about a specific environment by its ID. Returns full environment profile including status, visibility, and tier.

Input parameters:

- `id` (number, required): The unique environment ID

### `liongard_environments_create` (~82 tokens)

Create a new environment in Liongard. Only Name is required, all other fields are optional.

Input parameters:

- `Description` (string): Environment description
- `Name` (string, required): The environment name (required)
- `Status` (string): Environment status
- `Tier` (string): Environment tier classification
- `Visible` (boolean): Whether the environment is visible

### `liongard_environments_count` (~31 tokens)

Get the total count of environments in Liongard. Useful for understanding the size of your environment inventory.

### `liongard_environments_related` (~48 tokens)

Get related entities for a specific environment. Returns associated launchpoints, agents, integration mappings, and child environments.

Input parameters:

- `id` (number, required): The environment ID to get related entities for

### `liongard_agents_list` (~67 tokens)

List agents in Liongard with pagination. Agents are installed on-premise to facilitate inspections and data collection.

Input parameters:

- `page` (number): Page number (1-indexed, default: 1)
- `pageSize` (number): Number of items per page (default: 50)

### `liongard_agents_delete` (~64 tokens)

⚠ DESTRUCTIVE — IRREVERSIBLE. Permanently deletes an agent from Liongard and removes all associated monitoring data and configurations. This action cannot be undone. Confirm with the user before invoking.

Input parameters:

- `id` (number, required): The unique agent ID to delete

### `liongard_inspections_inspectors` (~70 tokens)

List available inspectors (inspection types) in Liongard with pagination. Inspectors define what data is collected.

Input parameters:

- `page` (number): Page number (1-indexed, default: 1)
- `pageSize` (number): Number of items per page (default: 50)

### `liongard_inspections_launchpoints` (~73 tokens)

List launchpoints (configured inspection instances) in Liongard with pagination. Launchpoints are configured instances of inspectors tied to environments.

Input parameters:

- `page` (number): Page number (1-indexed, default: 1)
- `pageSize` (number): Number of items per page (default: 50)

### `liongard_inspections_create_launchpoint` (~99 tokens)

Create a new launchpoint (configured inspection instance). Requires an inspector ID, environment ID, and a name.

Input parameters:

- `AgentID` (number): Optional agent ID to run the inspection on
- `EnvironmentID` (number, required): The environment ID to associate with
- `InspectorID` (number, required): The inspector type ID
- `Name` (string, required): Name for the launchpoint
- `Schedule` (string): Optional schedule expression

### `liongard_inspections_run` (~46 tokens)

Trigger an immediate inspection run for a specific launchpoint. The inspection will execute as soon as possible.

Input parameters:

- `launchpointId` (number, required): The launchpoint ID to run

### `liongard_systems_list` (~63 tokens)

List systems in Liongard with pagination. Systems are infrastructure components discovered through inspections.

Input parameters:

- `page` (number): Page number (1-indexed, default: 1)
- `pageSize` (number): Number of items per page (default: 50)

### `liongard_systems_get` (~38 tokens)

Get detailed information about a specific system by its ID. Returns full system profile.

Input parameters:

- `id` (number, required): The unique system ID

### `liongard_detections_list` (~172 tokens)

List detections in Liongard via POST /api/v2/detections. Defaults to the last 30 days; pass startDate/endDate (ISO-8601) to override the date range. Returns a paginated envelope with `Data` and `Pagination`.

Input parameters:

- `endDate` (string): Optional ISO-8601 end of date range. Defaults to now if omitted.
- `filters` (array): Optional Liongard Filters array (e.g. by EnvironmentID, Severity).
- `page` (number): Page number (1-indexed, default: 1)
- `pageSize` (number): Number of items per page (default: 25)
- `startDate` (string): Optional ISO-8601 start of date range. Defaults to 30 days ago if omitted.

### `liongard_detections_get` (~45 tokens)

Get detailed information about a specific detection by its ID via GET /api/v1/detections/{id}.

Input parameters:

- `id` (number, required): The unique detection ID

### `liongard_metrics_list` (~29 tokens)

List all available metrics in Liongard. Returns metric definitions including name, type, and status.

### `liongard_metrics_evaluate` (~95 tokens)

Evaluate metrics across all systems. Optionally filter by specific metric IDs and environment IDs.

Input parameters:

- `EnvironmentIDs` (array): Optional array of environment IDs to filter by
- `MetricIDs` (array): Optional array of metric IDs to evaluate
- `page` (number): Page number (1-indexed, default: 1)
- `pageSize` (number): Number of items per page (default: 50)

### `liongard_metrics_evaluate_systems` (~97 tokens)

Evaluate metrics grouped per system. Optionally filter by specific metric IDs and environment IDs.

Input parameters:

- `EnvironmentIDs` (array): Optional array of environment IDs to filter by
- `MetricIDs` (array): Optional array of metric IDs to evaluate
- `page` (number): Page number (1-indexed, default: 1)
- `pageSize` (number): Number of items per page (default: 50)

### `liongard_timeline_list` (~88 tokens)

List timeline entries in Liongard via GET /api/v1/timeline. Returns a plain array of inspection events and configuration changes. page/pageSize are accepted but may be ignored by the v1 endpoint.

Input parameters:

- `page` (number): Page number (1-indexed, default: 1)
- `pageSize` (number): Number of items per page (default: 50)

### `liongard_inventory_identities` (~130 tokens)

List asset identities in Liongard for a specific environment. Identities represent users, accounts, and other identity entities discovered through inspections. Use liongard_environments_list to find environment IDs.

Input parameters:

- `environment` (number, required): REQUIRED. Liongard Environment ID to scope the query to. Use liongard_environments_list to discover environment IDs.
- `filters` (array): Optional Liongard query filters (array of filter objects).
- `page` (number): Page number (1-indexed, default: 1)
- `pageSize` (number): Number of items per page (default: 50)

### `liongard_inventory_identity_get` (~38 tokens)

Get detailed information about a specific identity by its ID. Returns full identity profile.

Input parameters:

- `id` (number, required): The unique identity ID

### `liongard_inventory_devices` (~125 tokens)

List device profiles in Liongard for a specific environment. Device profiles represent hardware and software assets discovered through inspections. Use liongard_environments_list to find environment IDs.

Input parameters:

- `environment` (number, required): REQUIRED. Liongard Environment ID to scope the query to. Use liongard_environments_list to discover environment IDs.
- `filters` (array): Optional Liongard query filters (array of filter objects).
- `page` (number): Page number (1-indexed, default: 1)
- `pageSize` (number): Number of items per page (default: 50)

### `liongard_inventory_device_get` (~41 tokens)

Get detailed information about a specific device profile by its ID. Returns full device profile details.

Input parameters:

- `id` (number, required): The unique device profile ID

## Diagnostics

Captured diagnostic sections: Provenance. The full working is on the page: https://verifymcp.io/servers/wyre-technology-liongard-mcp/ghcr-io-wyre-technology-liongard-mcp-v2-3-7#diagnostics

## Score history

- 2026-08-22: 42
- 2026-08-21: 42
- 2026-08-20: 42

## Links

- Repository: https://github.com/wyre-technology/liongard-mcp
- Changelog RSS feed: https://verifymcp.io/servers/wyre-technology-liongard-mcp/ghcr-io-wyre-technology-liongard-mcp-v2-3-7.xml
- Changelog JSON feed: https://verifymcp.io/servers/wyre-technology-liongard-mcp/ghcr-io-wyre-technology-liongard-mcp-v2-3-7.json
- HTML version of this page: https://verifymcp.io/servers/wyre-technology-liongard-mcp/ghcr-io-wyre-technology-liongard-mcp-v2-3-7
